mrmBot-Matrix/events/guildCreate.js

7 lines
194 B
JavaScript

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