introduce a weather module

This commit is contained in:
Sven Czarnian
2022-10-24 21:23:58 +02:00
parent b65f1d7561
commit 3b4a25030f
5 changed files with 290 additions and 0 deletions

View File

@@ -10,6 +10,7 @@ import { LoggingController } from './logging/logging.controller';
import { AirportController } from './airport/airport.controller';
import { InboundModule } from './inbound/inbound.module';
import { InboundController } from './inbound/inbound.controller';
import { WeatherModule } from './weather/weather.module';
@Module({
imports: [
@@ -33,6 +34,7 @@ import { InboundController } from './inbound/inbound.controller';
AirportModule,
LoggingModule,
InboundModule,
WeatherModule,
],
controllers: [LoggingController, AirportController, InboundController],
})