Spaces:
Sleeping
Sleeping
File size: 378 Bytes
57a889c | 1 2 3 4 5 6 7 8 9 10 11 | import { Module } from '@nestjs/common';
import { SystemNoticesController } from './system-notices.controller';
import { SystemNoticesService } from './system-notices.service';
/** System-notices domain (L2 leaf module). Registered in AppModule. */
@Module({
controllers: [SystemNoticesController],
providers: [SystemNoticesService],
})
export class SystemNoticesModule {}
|