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:
parent
86783d8fc8
commit
cede62bd9c
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue