import { Module } from '@nestjs/common'; import { NotificationService } from './notification.service'; import { NotificationGateway } from './notification.gateway'; @Module({ providers: [NotificationService, NotificationGateway] }) export class NotificationModule {}