dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_SystemLogModule cluster_SystemLogModule_exports cluster_SystemLogModule_providers SystemLogConfig SystemLogConfig SystemLogModule SystemLogModule SystemLogModule->SystemLogConfig SystemLogConfig SystemLogConfig SystemLogConfig->SystemLogModule SystemLogService SystemLogService SystemLogService->SystemLogModule

File

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

import { BNestPrismaModule } from "@bish-nest/core/services/database/prisma/prisma.module";
import { Module } from "@nestjs/common";
import { SystemLogConfig } from "./config/system-log-config.service";
import { SystemLogService } from "./services/system-log.service";
import { SystemLogController } from "./system-log.controller";

@Module({
  imports: [BNestPrismaModule],
  controllers: [SystemLogController],
  providers: [SystemLogService, SystemLogConfig],
  exports: [SystemLogConfig],
})
export class SystemLogModule {}

results matching ""

    No results matching ""