chore: remove unnecessary error handling in main function

This commit is contained in:
Will Hohyon Ryu 2024-03-07 19:41:59 -08:00
parent c6390a649c
commit 26f5881f43

View file

@ -69,7 +69,4 @@ async function main() {
}
}
main().catch((error) => {
console.error("Error:", error);
process.exit(1);
});
main();