dependencies dependencies cluster_CacheModule cluster_CacheModule_providers cluster_CacheModule_exports CacheService CacheService CacheModule CacheModule CacheModule->CacheService CacheService CacheService CacheService->CacheModule

File

src/cache/cache.module.ts

Providers

Exports

import { Module } from '@nestjs/common';
import { HttpModule } from '@nestjs/axios';
import { CacheService } from './cache.service';
import { ConfigModule, ConfigService } from '@nestjs/config';

@Module({
  imports: [HttpModule, ConfigModule],
  exports: [CacheService],
  providers: [ConfigService, CacheService],
})
export class CacheModule {}

results matching ""

    No results matching ""