Spaces:
Sleeping
Sleeping
| import { Module } from '@nestjs/common'; | |
| import { NotificationsController } from './notifications.controller'; | |
| import { NotificationsService } from './notifications.service'; | |
| /** Notifications domain (L6 leaf module). Registered in AppModule. */ | |
| ({ | |
| controllers: [NotificationsController], | |
| providers: [NotificationsService], | |
| }) | |
| export class NotificationsModule {} | |