feat: migrate from github

This commit is contained in:
2024-05-12 01:52:39 -07:00
commit 7437deab71
118 changed files with 10375 additions and 0 deletions

View File

@ -0,0 +1,16 @@
import { Guild } from "discord.js";
import { ExtendedClient } from "../../interfaces/ExtendedClient";
/**
*
* @param {ExtendedClient} bot The bot's Discord instance.
* @param {Guild} guild The newly left Discord guild.
*/
export const onGuildDelete = async function (
bot: ExtendedClient,
guild: Guild
) {
await bot.env.debugHook.send({
content: `LEFT GUILD: ${guild.name} (${guild.id}) `
});
};