Files
calendar/apps/api/v2/src/modules/redis/redis.module.ts
T
ceb555460e feat: Platform Rate limiting + access token caching (#14560)
* feat: Platform Rate limiting + access token caching

* chore: changes

* chore: cleanup

* chore: remove yarnlock changes

* chore: yarnlcok

---------

Co-authored-by: Alex van Andel <me@alexvanandel.com>
Co-authored-by: Morgan <33722304+ThyMinimalDev@users.noreply.github.com>
2024-04-26 13:14:13 +00:00

9 lines
201 B
TypeScript

import { RedisService } from "@/modules/redis/redis.service";
import { Module } from "@nestjs/common";
@Module({
providers: [RedisService],
exports: [RedisService],
})
export class RedisModule {}