Hello World Command

This commit is contained in:
zakt0210
2017-12-06 12:27:51 -05:00
parent 0c6b44a8be
commit a8903613ac
+17
View File
@@ -0,0 +1,17 @@
const { Command } = require('discord.js-commando');
module.exports = class HelloWorldCommand extends Command {
constructor(client) {
super(client, {
name: 'hello-word',
aliases: ['hola-mundo'],
group: 'single',
memberName: 'hello-world',
description: 'Hello world.'
});
}
run(msg) {
return msg.say('Hello World!');
}
};