From 05306b11f8f1b97364efea9f263e25c3911a3cbd Mon Sep 17 00:00:00 2001 From: Skylar Grant Date: Wed, 22 Sep 2021 19:13:54 -0400 Subject: [PATCH] jenny? --- slash-commands/jenny.js | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 slash-commands/jenny.js 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