export interface ICacheProvider { set(key: string, data: object, ttl: any): Promise; has(key: string): Promise; get(key: string): Promise; }