This commit is contained in:
2025-12-22 23:27:53 +03:30
parent ce2987d67b
commit 4dafba955e
14 changed files with 126 additions and 25 deletions
+3 -4
View File
@@ -1,12 +1,11 @@
import { Module } from '@nestjs/common';
import { CacheService } from './cache.service';
import { SmsService } from './sms.service';
@Module({
imports: [],
controllers: [],
providers: [CacheService, SmsService],
exports: [CacheService, SmsService],
providers: [CacheService, ],
exports: [CacheService],
})
export class UtilsModule {}