From e4450c8417624b71d779cb4f41692538f9165e10 Mon Sep 17 00:00:00 2001 From: sowgro Date: Sat, 2 Sep 2023 19:12:47 -0400 Subject: first commit --- commands/preview.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 commands/preview.js (limited to 'commands/preview.js') diff --git a/commands/preview.js b/commands/preview.js new file mode 100644 index 0000000..013f650 --- /dev/null +++ b/commands/preview.js @@ -0,0 +1,16 @@ +const { SlashCommandBuilder } = require('discord.js'); + +module.exports = { + data: new SlashCommandBuilder() + .setName('preview') + .setDescription('Only you can see this!') + .addStringOption(option => + option.setName('command') + .setDescription('Name of the command to display') + .setRequired(true) + .addChoices(...global.data.getList()) + ), + async execute(interaction) { + await interaction.reply({content: global.data.get(interaction.options.getString('command')), ephemeral: true}); + }, +}; \ No newline at end of file -- cgit v1.2.3