Spaces:
Sleeping
Sleeping
File size: 375 Bytes
57a889c | 1 2 3 4 5 6 7 8 9 10 11 | 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 {}
|