export interface IBaseCacheOptions {
    readonly type: 'memory' | 'fs' | 'redis' | 'memcached'
    readonly ttl?: number
}
