Quellcode durchsuchen

remove the user module

Sven Czarnian vor 2 Jahren
Ursprung
Commit
42235e6e17
1 geänderte Dateien mit 0 neuen und 2 gelöschten Zeilen
  1. 0 2
      src/app.module.ts

+ 0 - 2
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 {}