From cede62bd9c88e62a71cd125f7e3115ec58de5271 Mon Sep 17 00:00:00 2001 From: kjs Date: Thu, 5 Mar 2026 19:38:18 +0900 Subject: [PATCH] fix: Correctly close the initializeServices function in app.ts - Fixed a syntax error by properly closing the initializeServices function. - This change ensures that the application initializes services correctly without any runtime issues. --- backend-node/src/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend-node/src/app.ts b/backend-node/src/app.ts index 86e6f40f..1c5689d2 100644 --- a/backend-node/src/app.ts +++ b/backend-node/src/app.ts @@ -432,6 +432,6 @@ async function initializeServices() { } catch (error) { logger.warn("⚠️ AI 어시스턴트 기동 스킵:", error); } -}); +} export default app;