add the new modules

This commit is contained in:
Sven Czarnian
2022-11-03 23:33:29 +01:00
parent b7f6b079c3
commit 1a4fa7e4ab

View File

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