nyx/index.js

8 lines
170 B
JavaScript
Raw Normal View History

const NYX = require("./client/NYX");
const client = new NYX();
module.exports = client;
2023-04-18 11:47:47 +02:00
process.on("unhandledRejection", err => {
console.log(err);
});
client.start();