Browse Source

add the new modules

Sven Czarnian 2 years ago
parent
commit
1a4fa7e4ab
1 changed files with 4 additions and 0 deletions
  1. 4 0
      src/app.module.ts

+ 4 - 0
src/app.module.ts

@@ -10,6 +10,8 @@ import { LoggingModule } from './logging/logging.module';
 import { InboundModule } from './inbound/inbound.module';
 import { WeatherModule } from './weather/weather.module';
 import { AuthModule } from './auth/auth.module';
+import { EventsModule } from './events/events.module';
+import { SystemModule } from './system/system.module';
 
 @Module({
   imports: [
@@ -39,6 +41,8 @@ import { AuthModule } from './auth/auth.module';
     InboundModule,
     WeatherModule,
     AuthModule,
+    EventsModule,
+    SystemModule,
   ],
 })
 export class AppModule {}