mrmBot-Matrix/events/guildDelete.js

7 lines
201 B
JavaScript
Raw Normal View History

import { log } from "../utils/logger.js";
2019-09-13 20:02:41 +00:00
// run when the bot is removed from a guild
export default async (client, guild) => {
log(`[GUILD LEAVE] ${guild.name} (${guild.id}) removed the bot.`);
2019-09-13 20:02:41 +00:00
};