Newer
Older
percord / src / util / FileStorage.ts
@Flam3rboy Flam3rboy on 27 May 2021 172 bytes :construction: WIP rewrite
import { Storage } from "./Storage";

export class FileStorage implements Storage {
	async get(path: string, prefix?: string) {}

	async set(path: string, value: any) {}
}