Removed a useless command that previously served me as a template

This commit is contained in:
unknown 2018-09-09 17:14:19 +02:00
parent 489eae0ff2
commit 5adb377aa2

View file

@ -1,15 +0,0 @@
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!');
}
};