implementation of module and service socket

This commit is contained in:
AmirHossein Mahmoodi
2023-10-29 14:02:33 +03:30
parent a437a73c26
commit 67bb743a9e
11 changed files with 86 additions and 55 deletions

View File

@@ -1,7 +1,8 @@
import { Module } from "@nestjs/common";
import { NotificationModule } from "./notifications/notification.mudule";
import { NotificationModule } from "./notifications/notification.module";
import { SequelizeModule } from "@nestjs/sequelize";
import { ConfigModule } from "@nestjs/config";
import { SocketModule } from "./socket/socket.module";
@Module({
imports: [
@@ -17,6 +18,7 @@ import { ConfigModule } from "@nestjs/config";
synchronize: true,
}),
NotificationModule,
SocketModule,
],
})
export class AppModule {