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 {}