apps/recallassess/recallassess-api/src/api/client/participant-group/participant-group.module.ts
import { Module } from "@nestjs/common";
import { CLParticipantGroupController } from "./participant-group.controller";
import { CLParticipantGroupService } from "./participant-group.service";
@Module({
controllers: [CLParticipantGroupController],
providers: [CLParticipantGroupService],
exports: [CLParticipantGroupService],
})
export class CLParticipantGroupModule {}