remove unused modules

This commit is contained in:
2026-01-07 12:24:55 +03:30
parent f2284c103d
commit 560b2983f3
150 changed files with 1853 additions and 96521 deletions
+11
View File
@@ -0,0 +1,11 @@
import { Module } from '@nestjs/common';
import { CacheService } from './cache.service';
@Module({
imports: [],
controllers: [],
providers: [CacheService, ],
exports: [CacheService],
})
export class UtilsModule {}