diff options
| author | Tim Schiewe <git@tforge.de> | 2018-04-30 19:18:46 +0200 |
|---|---|---|
| committer | Tim Schiewe <git@tforge.de> | 2018-04-30 19:18:46 +0200 |
| commit | ac85779f3b67ffc2953c17d0824be62b1f0acc86 (patch) | |
| tree | 5442df8297c3620ed72af7e3ece2a77ad58cce35 /src/sources/ISource.ts | |
| parent | 93b466df50d94d4c15715f5eb4d88a0be7d61c11 (diff) | |
| download | splus-ac85779f3b67ffc2953c17d0824be62b1f0acc86.tar.gz splus-ac85779f3b67ffc2953c17d0824be62b1f0acc86.zip | |
Implement interface/config based infrastructure
Fixes #2
Diffstat (limited to 'src/sources/ISource.ts')
| -rw-r--r-- | src/sources/ISource.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/sources/ISource.ts b/src/sources/ISource.ts new file mode 100644 index 0000000..042aaae --- /dev/null +++ b/src/sources/ISource.ts @@ -0,0 +1,3 @@ +export interface ISource { + getData(): Promise<string>; +} |
