introduce the system module
This commit is contained in:
9
src/system/system.module.ts
Normal file
9
src/system/system.module.ts
Normal file
@@ -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 {}
|
||||||
Reference in New Issue
Block a user