From e4450c8417624b71d779cb4f41692538f9165e10 Mon Sep 17 00:00:00 2001 From: sowgro Date: Sat, 2 Sep 2023 19:12:47 -0400 Subject: first commit --- commands/delete.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 commands/delete.js (limited to 'commands/delete.js') diff --git a/commands/delete.js b/commands/delete.js new file mode 100644 index 0000000..60c541f --- /dev/null +++ b/commands/delete.js @@ -0,0 +1,17 @@ +const { SlashCommandBuilder } = require('discord.js'); + +module.exports = { + data: new SlashCommandBuilder() + .setName('remove') + .setDescription('Remove a Command') + .addStringOption(option => + option.setName('command') + .setDescription('Name of the command to remove') + .setRequired(true) + .setChoices(...global.data.getList()) + ), + async execute(interaction) { + global.data.remove(interaction.options.getString('command')) + await interaction.reply('Removed `'+interaction.options.getString('command')+'`.'); + }, +}; \ No newline at end of file -- cgit v1.2.3