Assist_Design/apps/bff/src/common/cache/cache.module.ts

12 lines
207 B
TypeScript
Raw Normal View History

2025-08-21 15:24:40 +09:00
import { Global, Module } from '@nestjs/common';
import { CacheService } from './cache.service';
@Global()
@Module({
providers: [CacheService],
exports: [CacheService],
})
export class CacheModule {}