nyx/index.js
2023-04-18 10:47:47 +01:00

7 lines
170 B
JavaScript

const NYX = require("./client/NYX");
const client = new NYX();
module.exports = client;
process.on("unhandledRejection", err => {
console.log(err);
});
client.start();