Slash Commands Test

This commit is contained in:
Dragon Fire
2024-04-07 20:10:26 -04:00
parent 204c056ea1
commit 76fd56b03a
7 changed files with 107 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
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('( ͡° ͜ʖ ͡°)');
}
};