6 lines
223 B
JavaScript
6 lines
223 B
JavaScript
import { log } from "../utils/logger.js";
|
|
|
|
// run when the bot is removed from a guild
|
|
export default async (client, cluster, worker, ipc, guild) => {
|
|
log(`[GUILD LEAVE] ${guild.name} (${guild.id}) removed the bot.`);
|
|
};
|