try again

This commit is contained in:
Corey Johnson 2025-06-16 13:15:58 -07:00
parent 543173ebee
commit 6ca88c8a76

View File

@ -15,3 +15,11 @@ const client = new Client({
await client.login(process.env.DISCORD_TOKEN)
listenForEvents(client)
process.on("unhandledRejection", (error) => {
console.error("Unhandled promise rejection:", error)
})
process.on("uncaughtException", (error) => {
console.error("Uncaught exception:", error)
})