blob: 44e77fda4c8e0133d0a7ad67c754883ac589b529 [file] [log] [blame]
import { CommandInteraction } from "discord.js";
import { SlashCommandSubcommandBuilder } from "@discordjs/builders";
import { WrappedCheck } from "jshaiku";
const command = (builder: SlashCommandSubcommandBuilder) =>
builder
.setName("all")
.setDescription("Gives or removes a role from everyone")
const callback = (interaction: CommandInteraction) => {
interaction.reply("This command is not yet finished [role/all]");
}
const check = (interaction: CommandInteraction, defaultCheck: WrappedCheck) => {
return true;
}
export { command };
export { callback };
export { check };