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