1
0

introduce the system module

Este cometimento está contido em:
Sven Czarnian
2022-11-04 13:13:48 +01:00
ascendente 1d6d0b63e9
cometimento 17f521008c

9
src/system/system.module.ts Ficheiro normal
Ver ficheiro

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