mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-26 14:19:11 +02:00
Slash Commands Test
This commit is contained in:
@@ -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('( ͡° ͜ʖ ͡°)');
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user