From a8903613ac2608a6bb15e9d6601dfef55ab97c06 Mon Sep 17 00:00:00 2001 From: zakt0210 Date: Wed, 6 Dec 2017 12:27:51 -0500 Subject: [PATCH] Hello World Command --- commands/single/hello-world.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 commands/single/hello-world.js 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!'); + } +};