summary refs log tree commit diff
path: root/src/index.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-01-30 19:58:15 +0100
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-01-30 19:58:15 +0100
commit76000f8fa11dde2f67efdb22a87c4644ea49f9eb (patch)
tree67664d9c616068113b8fef6704b005726be8f0a7 /src/index.ts
parent:sparkles: Database (diff)
downloadserver-76000f8fa11dde2f67efdb22a87c4644ea49f9eb.tar.xz
:sparkles: Util
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 });