nyx/index.js

8 lines
170 B
JavaScript
Raw Normal View History

const NYX = require("./client/NYX");
const client = new NYX();
module.exports = client;
process.on("unhandledRejection", err => {
console.log(err);
2021-06-24 09:53:19 +02:00
});
client.start();