Removed a useless command that previously served me as a template
This commit is contained in:
parent
489eae0ff2
commit
5adb377aa2
1 changed files with 0 additions and 15 deletions
|
@ -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!');
|
|
||||||
}
|
|
||||||
};
|
|
Loading…
Reference in a new issue