Haha-Yes/commands/fun/meow.js
2018-09-07 21:28:42 +02:00

15 lines
No EOL
382 B
JavaScript

const { Command } = require('discord.js-commando');
module.exports = class MeowCommand extends Command {
constructor(client) {
super(client, {
name: 'meow',
group: 'fun',
memberName: 'meow',
description: 'Replies with a meow, kitty cat.',
});
}
run(message) {
return message.say('Meow!');
}
};