12 lines
350 B
TypeScript
12 lines
350 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { HttpCacheInterceptor } from 'src/core/interceptors/http-cache.interceptor';
|
|
import { CacheService } from './cache.service';
|
|
|
|
@Module({
|
|
imports: [],
|
|
controllers: [],
|
|
providers: [CacheService, HttpCacheInterceptor],
|
|
exports: [CacheService, HttpCacheInterceptor],
|
|
})
|
|
export class UtilsModule {}
|