eu.astrogd.white-leopard/index.ts
2022-11-23 13:23:25 +01:00

13 lines
290 B
TypeScript

import { config } from "dotenv";
import swapConsole from "./src/tools/consoleSwapper";
import "./src/client";
config();
swapConsole();
function shutdown() {
console.log("Shutdown request received");
process.exit();
}
process.on("SIGINT", shutdown);
process.on("SIGHUP", shutdown);