apps/recallassess/recallassess-api/src/api/client/auth/auth.module.ts
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({}), CLParticipantModule],
controllers: [CLAuthController],
providers: [CLAuthService],
exports: [CLAuthService],
})
export class CLAuthModule {}