nyx/index.js

9 lines
234 B
JavaScript
Raw Normal View History

2022-01-23 02:06:11 +01:00
const { HTTPError, DiscordAPIError } = require("discord.js");
const NYX = require("./client/NYX");
const client = new NYX();
module.exports = client;
process.on("unhandledRejection", err => {
2022-01-23 02:06:11 +01:00
console.error(err);
2021-06-24 09:53:19 +02:00
});
client.start();