qwen_2.5_model / src /common /cache /cache.module.ts
Muhammad Noman
Deploy OpenWA to Hugging Face Spaces
46252cd
Raw
History Blame Contribute Delete
279 Bytes
import { Global, Module } from '@nestjs/common';
import { ConfigModule } from '@nestjs/config';
import { CacheService } from './cache.service';
@Global()
@Module({
imports: [ConfigModule],
providers: [CacheService],
exports: [CacheService],
})
export class CacheModule {}