dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_ParticipantGroupModule cluster_ParticipantGroupModule_providers cluster_ParticipantGroupModule_exports ParticipantGroupConfig ParticipantGroupConfig ParticipantGroupService ParticipantGroupService ParticipantGroupModule ParticipantGroupModule ParticipantGroupModule->ParticipantGroupConfig ParticipantGroupModule->ParticipantGroupService ParticipantGroupConfig ParticipantGroupConfig ParticipantGroupConfig->ParticipantGroupModule ParticipantGroupService ParticipantGroupService ParticipantGroupService->ParticipantGroupModule

File

apps/recallassess/recallassess-api/src/api/admin/participant-group/participant-group.module.ts

import { BNestPrismaModule } from "@bish-nest/core/services/database/prisma/prisma.module";
import { Module } from "@nestjs/common";
import { ParticipantGroupConfig } from "./config/participant-group-config.service";
import { ParticipantGroupController } from "./participant-group.controller";
import { ParticipantGroupService } from "./participant-group.service";

@Module({
  imports: [BNestPrismaModule],
  controllers: [ParticipantGroupController],
  providers: [ParticipantGroupService, ParticipantGroupConfig],
  exports: [ParticipantGroupService, ParticipantGroupConfig],
})
export class ParticipantGroupModule {}

results matching ""

    No results matching ""