blob: 3141f9f1519367737fcd90de3440be931f5d7851 [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 };