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