feat: ws simple setup only

This commit is contained in:
SauravDhakal
2026-04-12 21:50:46 +05:45
parent 2f01adeade
commit 4686e0abbc
13 changed files with 334 additions and 23 deletions

View File

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