blob: 231928406af4e7481cc219019182f586d6a25091 [file] [log] [blame]
import type { CommandInteraction } from "discord.js";
import { SlashCommandBuilder } from "@discordjs/builders";
// @ts-expect-error
import { WrappedCheck } from "jshaiku";
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);
};
const check = (
_interaction: CommandInteraction,
_defaultCheck: WrappedCheck
) => {
return true;
};
export { command };
export { callback };
export { check };