define the user management database

This commit is contained in:
Sven Czarnian
2022-10-27 12:06:30 +02:00
parent d5d8425179
commit d1fbad3930
5 changed files with 120 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ import { AirportController } from './airport/airport.controller';
import { InboundModule } from './inbound/inbound.module';
import { InboundController } from './inbound/inbound.controller';
import { WeatherModule } from './weather/weather.module';
import { UserModule } from './user/user.module';
@Module({
imports: [
@@ -35,6 +36,7 @@ import { WeatherModule } from './weather/weather.module';
LoggingModule,
InboundModule,
WeatherModule,
UserModule,
],
controllers: [LoggingController, AirportController, InboundController],
})