export interface ICacheService { get(url: string): Promise; set(url: string, response: Response): Promise; }