blob: 698bee9ebbf9928e7224b05b37c3c2d8b37f381a [file] [log] [blame]
import { CommandInteraction } from "discord.js";
import { SlashCommandSubcommandBuilder } from "@discordjs/builders";
import { WrappedCheck } from "jshaiku";
const command = (builder: SlashCommandSubcommandBuilder) =>
builder
.setName("remove")
.setDescription("Removes a lock from a channel")
const callback = (interaction: CommandInteraction) => {
interaction.reply("Command incomplete [mod/lock/remove]");
}
const check = (interaction: CommandInteraction, defaultCheck: WrappedCheck) => {
return true;
}
export { command };
export { callback };
export { check };