blob: 270ee62b8a9933ff865c7f207819111661a30cac [file] [log] [blame]
import type { CommandInteraction } from 'discord.js';
import type { SlashCommandSubcommandBuilder } from "discord.js";
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: CommandInteraction) => {
guide(interaction.guild!, interaction);
};
export { command };
export { callback };