blob: bb93dde827b4deb18941dd8b8bd6b32790d3be1e [file] [log] [blame]
pineafan4f164f32022-02-26 22:07:12 +00001import { CommandInteraction } from "discord.js";
2import { SlashCommandBuilder } from "@discordjs/builders";
3import { WrappedCheck } from "jshaiku";
4
5const command = new SlashCommandBuilder()
6 .setName("verify")
7 .setDescription("Get verified in the server")
8
9const callback = (interaction: CommandInteraction) => {
10 interaction.reply("Command incomplete [verify]");
11}
12
13const check = (interaction: CommandInteraction, defaultCheck: WrappedCheck) => {
14 return true;
15}
16
17export { command };
18export { callback };
19export { check };