mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-06 22:44:32 +02:00
15 lines
315 B
JavaScript
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('( ͡° ͜ʖ ͡°)');
|
|
}
|
|
};
|