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

import { Server } from "./Server";

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