dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_ParticipantModule cluster_ParticipantModule_exports cluster_ParticipantModule_providers ParticipantConfig ParticipantConfig ParticipantService ParticipantService ParticipantModule ParticipantModule ParticipantModule->ParticipantConfig ParticipantModule->ParticipantService ParticipantConfig ParticipantConfig ParticipantConfig->ParticipantModule ParticipantService ParticipantService ParticipantService->ParticipantModule

File

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

import { BNestPrismaModule } from "@bish-nest/core/services/database/prisma/prisma.module";
import { Module } from "@nestjs/common";
import { ParticipantConfig } from "./config/participant-config.service";
import { ParticipantController } from "./participant.controller";
import { ParticipantService } from "./participant.service";

@Module({
  imports: [BNestPrismaModule],
  controllers: [ParticipantController],
  providers: [ParticipantService, ParticipantConfig],
  exports: [ParticipantService, ParticipantConfig],
})
export class ParticipantModule {}

results matching ""

    No results matching ""