This commit is contained in:
Skylar Grant 2021-09-22 19:13:54 -04:00
parent f89226c23b
commit 05306b11f8
1 changed files with 11 additions and 0 deletions

11
slash-commands/jenny.js Normal file
View File

@ -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');
},
};