Spaces:
Runtime error
Runtime error
| import { Global, Module } from '@nestjs/common'; | |
| import { ConfigModule } from '@nestjs/config'; | |
| import { CacheService } from './cache.service'; | |
| () | |
| ({ | |
| imports: [ConfigModule], | |
| providers: [CacheService], | |
| exports: [CacheService], | |
| }) | |
| export class CacheModule {} | |