Fix prettier errors

This commit is contained in:
Jesus
2025-01-07 08:50:34 +01:00
parent 2816a16387
commit 0f2498bbaa
11 changed files with 71 additions and 37 deletions

View File

@@ -9,7 +9,10 @@ export class LocalCache implements ICache {
private conf: CacheConfLocal;
static localCache = new NodeCache();
constructor(private readonly configService: ConfigService, private readonly module: string) {
constructor(
private readonly configService: ConfigService,
private readonly module: string,
) {
this.conf = this.configService.get<CacheConf>('CACHE')?.LOCAL;
}