introduce the database and controller connections for all inbounds

This commit is contained in:
Sven Czarnian
2022-10-23 16:58:00 +02:00
parent 7a41dd0fb2
commit f69e365623
19 changed files with 849 additions and 4 deletions

View File

@@ -8,6 +8,8 @@ import { AirportModule } from './airport/airport.module';
import { LoggingModule } from './logging/logging.module';
import { LoggingController } from './logging/logging.controller';
import { AirportController } from './airport/airport.controller';
import { InboundModule } from './inbound/inbound.module';
import { InboundController } from './inbound/inbound.controller';
@Module({
imports: [
@@ -30,7 +32,8 @@ import { AirportController } from './airport/airport.controller';
PerformanceModule,
AirportModule,
LoggingModule,
InboundModule,
],
controllers: [LoggingController, AirportController],
controllers: [LoggingController, AirportController, InboundController],
})
export class AppModule {}