1
0
Fork 0
mirror of https://github.com/paricafe/misskey.git synced 2025-04-21 00:26:12 -05:00
This commit is contained in:
syuilo 2021-03-18 10:55:51 +09:00
parent 0389e2c891
commit e53a40658d

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