Files
aeroresolve_backend/src/modules/recovery-incident/recovery-incident.module.ts
T

15 lines
625 B
TypeScript

import { Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { RecoveryIncidentService } from './recovery-incident.service';
import { RecoveryIncidentController } from './recovery-incident.controller';
import { RecoveryIncident } from './entities/recovery-incident.entity';
import { AuditLogModule } from '../audit-log/audit-log.module';
@Module({
imports: [TypeOrmModule.forFeature([RecoveryIncident]), AuditLogModule],
controllers: [RecoveryIncidentController],
providers: [RecoveryIncidentService],
exports: [RecoveryIncidentService],
})
export class RecoveryIncidentModule {}