12 lines
470 B
TypeScript
12 lines
470 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { ApplicationModule } from '../application/application.module';
|
|
import { HealthController } from './controllers/health.controller';
|
|
import { ReportController } from './controllers/report.controller';
|
|
import { ExportController } from './controllers/export.controller';
|
|
|
|
@Module({
|
|
imports: [ApplicationModule],
|
|
controllers: [HealthController, ReportController, ExportController],
|
|
})
|
|
export class ApiModule {}
|