From 0e2b534277b3f35b147dd0b5cc8b1df0ea5764f7 Mon Sep 17 00:00:00 2001 From: kittapath Date: Tue, 11 Mar 2025 12:50:11 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B8=9B=E0=B8=B4=E0=B8=94=20socket?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app.ts | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/app.ts b/src/app.ts index dfb4a7b3..dc1f99c6 100644 --- a/src/app.ts +++ b/src/app.ts @@ -18,9 +18,9 @@ import { initWebSocket } from "./services/webSocket"; async function main() { await AppDataSource.initialize(); - - initWebSocket(); - + + // initWebSocket(); + const app = express(); app.use( @@ -104,8 +104,6 @@ async function main() { } runMessageQueue(); - - } main();