Files
GMW/src/index.ts
T

14 lines
377 B
TypeScript

import "./mock-crc";
import "libsodium-wrappers";
import "@snazzah/davey";
import "dotenv/config";
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);
});