12 lines
207 B
TypeScript
12 lines
207 B
TypeScript
|
|
import { Global, Module } from '@nestjs/common';
|
||
|
|
import { CacheService } from './cache.service';
|
||
|
|
|
||
|
|
@Global()
|
||
|
|
@Module({
|
||
|
|
providers: [CacheService],
|
||
|
|
exports: [CacheService],
|
||
|
|
})
|
||
|
|
export class CacheModule {}
|
||
|
|
|
||
|
|
|