export interface IStorage {
    save(key:string, value: string)
    get(key:string)
}