auth-bot/bot.js

6 lines
186 B
JavaScript
Raw Normal View History

2024-02-03 15:08:57 +01:00
const Client = require("./client/Client");
const client = new Client();
module.exports = client;
process.on("unhandledRejection", () => {}); // add // when need to debug
client.start();