blob: 0053f76b3a10be24ec30d84f2d4972a52b853456 [file] [log] [blame]
import { CommandInteraction } from "discord.js";
import { SlashCommandSubcommandBuilder } from "@discordjs/builders";
import { WrappedCheck } from "jshaiku";
const command = (builder: SlashCommandSubcommandBuilder) =>
builder
.setName("automation")
.setDescription("Shows all automation options")
const callback = (interaction: CommandInteraction) => {
interaction.reply("This command is not yet finished [settings/automation]");
}
const check = (interaction: CommandInteraction, defaultCheck: WrappedCheck) => {
return true;
}
export { command };
export { callback };
export { check };