first commit

This commit is contained in:
creations 2025-04-19 11:58:49 -04:00
commit cfbcaa4851
Signed by: creations
GPG key ID: 8F553AA4320FC711
25 changed files with 1096 additions and 0 deletions

12
src/index.ts Normal file
View file

@ -0,0 +1,12 @@
import { logger } from "@helpers/logger";
import { serverHandler } from "@/server";
async function main(): Promise<void> {
serverHandler.initialize();
}
main().catch((error: Error) => {
logger.error(["Error initializing the server:", error]);
process.exit(1);
});