change stracture

This commit is contained in:
AmirHossein Mahmoodi
2025-05-10 15:04:19 +03:30
parent 2ce1b136a8
commit ec28b21cf8
8 changed files with 112 additions and 25 deletions

View File

@@ -3,6 +3,7 @@ import { ConfigModule } from '@nestjs/config';
import { TypeOrmModule } from '@nestjs/typeorm';
import { SocketModule } from './socket/socket.module';
import { NotificationModule } from './notifications/notification.module';
import { RedisModule } from './redis/redis.module';
@Module({
imports: [
@@ -20,6 +21,7 @@ import { NotificationModule } from './notifications/notification.module';
}),
SocketModule,
NotificationModule,
RedisModule,
],
})
export class AppModule {}