diff --git a/slash-commands/jenny.js b/slash-commands/jenny.js new file mode 100644 index 0000000..b0e1f23 --- /dev/null +++ b/slash-commands/jenny.js @@ -0,0 +1,11 @@ +const { SlashCommandBuilder } = require('@discordjs/builders'); +const fn = require('../functions.js'); + +module.exports = { + data: new SlashCommandBuilder() + .setName('jenny') + .setDescription('Jenny?'), + async execute(interaction) { + interaction.reply('867-5309'); + }, +}; \ No newline at end of file