summaryrefslogtreecommitdiff
path: root/commands/use.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands/use.js')
-rw-r--r--commands/use.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/commands/use.js b/commands/use.js
deleted file mode 100644
index dc9897b..0000000
--- a/commands/use.js
+++ /dev/null
@@ -1,16 +0,0 @@
-const { SlashCommandBuilder } = require('discord.js');
-
-module.exports = {
- data: new SlashCommandBuilder()
- .setName('use')
- .setDescription('Use a Command')
- .addStringOption(option =>
- option.setName('command')
- .setDescription('What the bot will send')
- .setRequired(true)
- .addChoices(...global.data.getList())
- ),
- async execute(interaction) {
- await interaction.reply(global.data.get(interaction.options.getString('command')));
- },
-}; \ No newline at end of file