mirror of
https://github.com/spacebarchat/server.git
synced 2026-04-26 23:55:20 +00:00
10 lines
223 B
TypeScript
10 lines
223 B
TypeScript
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();
|