blob: bf6a3062ea17b9b7444d6d46d2c11591c1322378 [file] [log] [blame]
import type { CommandInteraction } from "discord.js";
import { SlashCommandBuilder } from "@discordjs/builders";
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> => {
interaction.reply("boo")
verify(interaction);
};
const check = (_interaction: CommandInteraction) => {
return true;
};
export { command };
export { callback };
export { check };