augmenttoolkit / server /src /nest /system-notices /system-notices.module.ts
Leon4gr45's picture
Upload folder using huggingface_hub (part 5)
57a889c verified
Raw
History Blame Contribute Delete
378 Bytes
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 {}