summary refs log tree commit diff
path: root/src/index.ts
blob: e34ae0d35d787e27602c28790b138edb7c6111aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
process.on("uncaughtException", console.error);
process.on("unhandledRejection", console.error);
setTimeout(() => {}, 100000000);

import { Server } from "./Server";
import { config } from "dotenv";
config();

const server = new Server();
server.listen();