export interface StorageAdapter { set(path: string, value: string): Promise; get(path: string): Promise; exists(path: string): Promise; }