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

index 1ab17358..f2e5565f 100644 --- a/src/index.ts +++ b/src/index.ts
@@ -1,6 +1,8 @@ process.on("uncaughtException", console.error); process.on("unhandledRejection", console.error); +import { config } from "dotenv"; +config(); import { DiscordServer } from "./Server"; const server = new DiscordServer({ port: 3000 });