dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_ReportLogModule cluster_ReportLogModule_exports cluster_ReportLogModule_providers ReportLogConfig ReportLogConfig ReportLogModule ReportLogModule ReportLogModule->ReportLogConfig ReportLogConfig ReportLogConfig ReportLogConfig->ReportLogModule ReportLogService ReportLogService ReportLogService->ReportLogModule

File

apps/recallassess/recallassess-api/src/api/admin/report-log/report-log.module.ts

import { BNestPrismaModule } from "@bish-nest/core/services/database/prisma/prisma.module";
import { Module } from "@nestjs/common";
import { ReportLogConfig } from "./config/report-log-config.service";
import { ReportLogController } from "./report-log.controller";
import { ReportLogService } from "./services/report-log.service";

@Module({
  imports: [BNestPrismaModule],
  controllers: [ReportLogController],
  providers: [ReportLogService, ReportLogConfig],
  exports: [ReportLogConfig],
})
export class ReportLogModule {}

results matching ""

    No results matching ""