Files
dmenu-api/src/modules/utils/utils.module.ts
T
morteza 7995ae2948
deploy to danak / build_and_deploy (push) Has been cancelled
add cache interceptor for hot endpoints
2026-06-04 17:04:28 +03:30

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