nodbot/slash-commands/jenny.js

11 lines
274 B
JavaScript
Raw Normal View History

2021-09-22 23:13:54 +00:00
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');
},
};