Newer
Older
percord / src / index.ts
@Flam3rboy Flam3rboy on 30 Jan 2021 261 bytes :sparkles: Util
process.on("uncaughtException", console.error);
process.on("unhandledRejection", console.error);
setTimeout(() => {}, 100000000);

import { DiscordServer } from "./Server";

const server = new DiscordServer({ port: 3000 });
server.start().catch(console.error);