rename arg

This commit is contained in:
Namekuji 2023-07-02 23:14:28 -04:00
parent b36cc31e9b
commit 6f5e07de5d

View file

@ -6,9 +6,9 @@ export class Cache<T> {
private ttl: number;
private prefix: string;
constructor(prefix: string, ttlSeconds: number) {
constructor(name: string, ttlSeconds: number) {
this.ttl = ttlSeconds;
this.prefix = `cache:${prefix}`;
this.prefix = `cache:${name}`;
}
private prefixedKey(key: string | null): string {