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 {}