import { sendInteractionResponse, SlashCommandOptions } from "@wackford/mod.ts"; export default { name: "disclaimer", description: "proves that we are not at fault when the bot says something stupid again", execute: async (bot, interaction) => { await sendInteractionResponse(bot, interaction, { content: `DISCLAIMER: We (Wackyware) do not take any responsibility for the things said by this bot, if they offend you, get the administrator of your server to remove the message. For more details see https://discord.gg/Pxt9dVDSRn and `, }); }, } as SlashCommandOptions;