summary refs log tree commit diff
path: root/src/util/FileStorage.ts
blob: 01be005060202321f9758042456441f5b1abe627 (plain) (blame)
1
2
3
4
5
6
7
import { Storage } from "./Storage";

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

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