auth-bot/bot.js
2024-02-03 14:08:57 +00:00

5 lines
186 B
JavaScript

const Client = require("./client/Client");
const client = new Client();
module.exports = client;
process.on("unhandledRejection", () => {}); // add // when need to debug
client.start();