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.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/index.ts b/src/index.ts

index b267bbfb..e34ae0d3 100644 --- a/src/index.ts +++ b/src/index.ts
@@ -3,6 +3,8 @@ process.on("unhandledRejection", console.error); setTimeout(() => {}, 100000000); import { Server } from "./Server"; +import { config } from "dotenv"; +config(); const server = new Server(); server.listen();