* 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>
9 lines
201 B
TypeScript
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 {}
|