blob: ffc441a3ede63f3db0ff63aa8d4c85ba3b766d0c [file] [log] [blame]
import { SlashCommandSubcommandBuilder } from "@discordjs/builders";
import guide from "../../reflex/guide.js";
const command = (builder: SlashCommandSubcommandBuilder) =>
builder.setName("guide").setDescription("Shows the welcome guide for the bot");
const callback = async (interaction) => {
guide(interaction.guild, interaction);
};
const check = () => {
return true;
};
export { command };
export { callback };
export { check };