auth-bot

Discord Bot to verify user, allowing server owner to recover server by pulling back members
git clone https://codeberg.org/night0721/auth-bot
Log | Files | Refs | README | LICENSE

bot.js (191B)


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