Browse Source

introduce the system module

Sven Czarnian 2 years ago
parent
commit
17f521008c
1 changed files with 9 additions and 0 deletions
  1. 9 0
      src/system/system.module.ts

+ 9 - 0
src/system/system.module.ts

@@ -0,0 +1,9 @@
+import { Module } from '@nestjs/common';
+import { EventsModule } from 'src/events/events.module';
+import { SystemController } from './system.controller';
+
+@Module({
+  imports: [EventsModule],
+  controllers: [SystemController],
+})
+export class SystemModule {}