092_UI_core / src /redis /redis.module.ts
anotherath's picture
fix ui and core
639bb77
import { Module, Global } from '@nestjs/common';
import { RedisService } from './redis.service';
@Global()
@Module({
providers: [RedisService],
exports: [RedisService],
})
export class RedisModule {}