mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-22 18:07:31 -07:00
rename arg
This commit is contained in:
parent
b36cc31e9b
commit
6f5e07de5d
1 changed files with 2 additions and 2 deletions
|
@ -6,9 +6,9 @@ export class Cache<T> {
|
||||||
private ttl: number;
|
private ttl: number;
|
||||||
private prefix: string;
|
private prefix: string;
|
||||||
|
|
||||||
constructor(prefix: string, ttlSeconds: number) {
|
constructor(name: string, ttlSeconds: number) {
|
||||||
this.ttl = ttlSeconds;
|
this.ttl = ttlSeconds;
|
||||||
this.prefix = `cache:${prefix}`;
|
this.prefix = `cache:${name}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
private prefixedKey(key: string | null): string {
|
private prefixedKey(key: string | null): string {
|
||||||
|
|
Loading…
Reference in a new issue