mrmBot-Matrix/events/guildDelete.js

7 lines
201 B
JavaScript

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