augmenttoolkit / server /src /nest /notifications /notifications.module.ts
Leon4gr45's picture
Upload folder using huggingface_hub (part 5)
57a889c verified
Raw
History Blame Contribute Delete
375 Bytes
import { Module } from '@nestjs/common';
import { NotificationsController } from './notifications.controller';
import { NotificationsService } from './notifications.service';
/** Notifications domain (L6 leaf module). Registered in AppModule. */
@Module({
controllers: [NotificationsController],
providers: [NotificationsService],
})
export class NotificationsModule {}