set redis

This commit is contained in:
2026-05-19 09:14:30 +03:30
parent 758bb03a26
commit c5c522f69c
7 changed files with 213 additions and 61 deletions
+9
View File
@@ -0,0 +1,9 @@
import { Global, Module } from '@nestjs/common'
import { RedisService } from './redis.service'
@Global()
@Module({
providers: [RedisService],
exports: [RedisService],
})
export class RedisModule {}