fix fake error
All checks were successful
Code quality checks / quality (push) Successful in 8s

This commit is contained in:
creations 2025-04-10 06:25:30 -04:00
parent 9deedd23cc
commit f30e763dd7
Signed by: creations
GPG key ID: 8F553AA4320FC711

View file

@ -7,7 +7,6 @@ async function main(): Promise<void> {
} }
main().catch((error: Error) => { main().catch((error: Error) => {
logger.error(["Error initializing the server:", error]); logger.error(["Error initializing the server:", error]);
process.exit(1); process.exit(1);
}); });