apps/recallassess/recallassess-api/src/api/client/reports/participant-group-reports.module.ts
import { CLParticipantGroupModule } from "@api/client/participant-group/participant-group.module";
import { Module } from "@nestjs/common";
import { CLParticipantGroupReportsController } from "./participant-group-reports.controller";
@Module({
imports: [CLParticipantGroupModule],
controllers: [CLParticipantGroupReportsController],
})
export class CLParticipantGroupReportsModule {}