From 687fcec62ce5a7843b5fd7092d8d15ed35fb1bcb Mon Sep 17 00:00:00 2001 From: MythEclipse Date: Fri, 29 May 2026 20:54:57 +0700 Subject: [PATCH] chore: add comment to clarify app initialization process --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 6dbd22c..b8e02a6 100644 --- a/src/index.ts +++ b/src/index.ts @@ -6,7 +6,7 @@ import { initializeApp } from "./app/bootstrap.js"; import { createChildLogger } from "./logger.js"; const logger = createChildLogger("bot"); - +// Initialize the app initializeApp().catch((error) => { logger.error({ error }, "Failed to initialize app"); process.exit(1);