Bye to some useless stuff

This commit is contained in:
Daniel Odendahl Jr
2018-05-16 11:32:27 +00:00
parent fc3911d241
commit 97bc1feffc
8 changed files with 3 additions and 195 deletions
-17
View File
@@ -1,17 +0,0 @@
const { Command } = require('discord.js-commando');
module.exports = class HelloWorldCommand extends Command {
constructor(client) {
super(client, {
name: 'hello-world',
aliases: ['hola-mundo'],
group: 'single',
memberName: 'hello-world',
description: 'Hello world.'
});
}
run(msg) {
return msg.say('Hello World!');
}
};