apps/recallassess/recallassess-api/src/api/client/auth/auth.module.ts
import { BNestRefreshTokenModule } from "@bish-nest/core";
import { Module } from "@nestjs/common";
import { JwtModule } from "@nestjs/jwt";
import { CLParticipantModule } from "../participant/participant.module";
import { CLAuthController } from "./auth.controller";
import { CLAuthService } from "./auth.service";
@Module({
imports: [JwtModule.register({}), BNestRefreshTokenModule, CLParticipantModule],
controllers: [CLAuthController],
providers: [CLAuthService],
exports: [CLAuthService],
})
export class CLAuthModule {}