Files
psp_api/src/redis/redis.module.ts
T

10 lines
203 B
TypeScript
Raw Normal View History

2026-05-19 09:14:30 +03:30
import { Global, Module } from '@nestjs/common'
import { RedisService } from './redis.service'
@Global()
@Module({
providers: [RedisService],
exports: [RedisService],
})
export class RedisModule {}