summary refs log tree commit diff
path: root/src/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.ts')
-rw-r--r--src/index.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/index.ts b/src/index.ts

index f5000a61..9299221c 100644 --- a/src/index.ts +++ b/src/index.ts
@@ -1,3 +1,7 @@ +process.on("uncaughtException", console.error); +process.on("unhandledRejection", console.error); +setTimeout(() => {}, 100000000); + import { DiscordServer } from "./Server"; const server = new DiscordServer({ port: 3000 });