blob: 0dd8b24ba528c080bb0815c05faf3d69ea921aa5 [file] [log] [blame]
import type { CommandInteraction } from "discord.js";
import { SlashCommandBuilder } from "discord.js";
import verify from "../reflex/verify.js";
const command = new SlashCommandBuilder().setName("verify").setDescription("Get verified in the server");
const callback = async (interaction: CommandInteraction): Promise<void> => {
verify(interaction);
};
export { command };
export { callback };