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.
This commit is contained in:
kjs 2026-03-05 19:38:18 +09:00
parent 86783d8fc8
commit cede62bd9c
1 changed files with 1 additions and 1 deletions

View File

@ -432,6 +432,6 @@ async function initializeServices() {
} catch (error) { } catch (error) {
logger.warn("⚠️ AI 어시스턴트 기동 스킵:", error); logger.warn("⚠️ AI 어시스턴트 기동 스킵:", error);
} }
}); }
export default app; export default app;