nodbot/slash-commands/lenny.js

11 lines
294 B
JavaScript
Raw Normal View History

2021-09-22 17:15:31 +00:00
const { SlashCommandBuilder } = require('@discordjs/builders');
const fn = require('../functions.js');
module.exports = {
data: new SlashCommandBuilder()
.setName('lenny')
.setDescription('( ͡° ͜ʖ ͡°)'),
async execute(interaction) {
2021-09-22 23:12:38 +00:00
interaction.reply('( ͡° ͜ʖ ͡°)');
2021-09-22 17:15:31 +00:00
},
};