11 lines
441 B
TypeScript
11 lines
441 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { RedisService } from './redis.service';
|
|
import { ReportCacheService } from './report-cache.service';
|
|
import { HotWalletBalanceCacheService } from './hot-wallet-balance-cache.service';
|
|
|
|
@Module({
|
|
providers: [RedisService, ReportCacheService, HotWalletBalanceCacheService],
|
|
exports: [RedisService, ReportCacheService, HotWalletBalanceCacheService],
|
|
})
|
|
export class RedisModule {}
|