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 {}