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

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

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