Files
xiao/slash-commands/lenny.js
T
2024-04-07 20:10:26 -04:00

15 lines
315 B
JavaScript

const SlashCommand = require('../framework/slash/SlashCommand');
module.exports = class LennyCommand extends SlashCommand {
constructor(client) {
super(client, {
name: 'lenny',
description: 'Responds with a lenny face.'
});
}
run(interaction) {
return interaction.reply('( ͡° ͜ʖ ͡°)');
}
};