summary refs log tree commit diff
path: root/src/util/FileStorage.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-05-27 18:54:15 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-05-27 18:54:15 +0200
commit8f66556f5acf149fadd2fe0ac9e03f5e6225026e (patch)
tree6a4f9a72970f192e34e61ecc509dc71a65997707 /src/util/FileStorage.ts
parent:bug: fix CDN (diff)
downloadserver-8f66556f5acf149fadd2fe0ac9e03f5e6225026e.tar.xz
:construction: WIP rewrite
Diffstat (limited to 'src/util/FileStorage.ts')
-rw-r--r--src/util/FileStorage.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/util/FileStorage.ts b/src/util/FileStorage.ts
new file mode 100644

index 00000000..01be0050 --- /dev/null +++ b/src/util/FileStorage.ts
@@ -0,0 +1,7 @@ +import { Storage } from "./Storage"; + +export class FileStorage implements Storage { + async get(path: string, prefix?: string) {} + + async set(path: string, value: any) {} +}