blob: cb89b55924e2623e0b88706b8c8eb7aaf40d0dec [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 lock to a channel")
const callback = (interaction: CommandInteraction) => {
interaction.reply("Command incomplete [mod/lock/add]");
}
const check = (interaction: CommandInteraction, defaultCheck: WrappedCheck) => {
return true;
}
export { command };
export { callback };
export { check };