This commit is contained in:
syuilo 2021-03-18 10:55:51 +09:00
parent b2b9b7d6bc
commit eff185f8d1

View file

@ -7,7 +7,7 @@ export class Cache<T> {
this.lifetime = lifetime;
}
public set(key: string | null, value: T):void {
public set(key: string | null, value: T): void {
this.cache.set(key, {
date: Date.now(),
value