diff --git a/commands/single/hello-world.js b/commands/single/hello-world.js new file mode 100644 index 00000000..0cb695bb --- /dev/null +++ b/commands/single/hello-world.js @@ -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!'); + } +};