abstract class BaseStorage { Future init(); Future set(String key, T value); Future get(String key); Future delete(String key); Future clearAll(); }