7 lines
206 B
JavaScript
7 lines
206 B
JavaScript
|
const logger = require("../utils/logger.js");
|
||
|
|
||
|
// run when the bot is removed from a guild
|
||
|
module.exports = async (guild) => {
|
||
|
logger.log(`[GUILD LEAVE] ${guild.name} (${guild.id}) removed the bot.`);
|
||
|
};
|