blob: 6fa80a2c5c5dfc7e290ed68c4b390c0e2aec19cf [file] [log] [blame]
import { CommandInteraction } from "discord.js";
import { SlashCommandSubcommandBuilder } from "@discordjs/builders";
import { WrappedCheck } from "jshaiku";
const command = (builder: SlashCommandSubcommandBuilder) =>
builder
.setName("add")
.setDescription("Adds a role to someone")
const callback = (interaction: CommandInteraction) => {
interaction.reply("Command incomplete [role/add]");
}
const check = (interaction: CommandInteraction, defaultCheck: WrappedCheck) => {
return true;
}
export { command };
export { callback };
export { check };