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

10 lines
205 B
TypeScript
Raw Normal View History

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