From 42235e6e179db742f87609acc840c2a3831e0fce Mon Sep 17 00:00:00 2001 From: Sven Czarnian Date: Mon, 31 Oct 2022 23:39:49 +0100 Subject: [PATCH] remove the user module --- src/app.module.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/app.module.ts b/src/app.module.ts index 6041b3d..6ce97cd 100644 --- a/src/app.module.ts +++ b/src/app.module.ts @@ -8,7 +8,6 @@ import { AirportModule } from './airport/airport.module'; import { LoggingModule } from './logging/logging.module'; import { InboundModule } from './inbound/inbound.module'; import { WeatherModule } from './weather/weather.module'; -import { UserModule } from './user/user.module'; @Module({ imports: [ @@ -33,7 +32,6 @@ import { UserModule } from './user/user.module'; LoggingModule, InboundModule, WeatherModule, - UserModule, ], }) export class AppModule {}