From 1a4fa7e4abe2d6799d4ecbe7690ff468fc0de9a5 Mon Sep 17 00:00:00 2001 From: Sven Czarnian Date: Thu, 3 Nov 2022 23:33:29 +0100 Subject: [PATCH] add the new modules --- src/app.module.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/app.module.ts b/src/app.module.ts index cd68dd3..336ef23 100644 --- a/src/app.module.ts +++ b/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 {}