Explorar o código

introduce the system module

Sven Czarnian %!s(int64=2) %!d(string=hai) anos
pai
achega
17f521008c
Modificáronse 1 ficheiros con 9 adicións e 0 borrados
  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 {}