summaryrefslogtreecommitdiff
path: root/commands/about.js
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2017-04-17 19:02:23 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2017-04-17 19:02:23 +0200
commit7aa7a45e3f46fd1bc3a965c0c4a40bded288d7a8 (patch)
treeead9bdbd19b2c93e8f0eeb7390fe5518665f9a46 /commands/about.js
parent3194e700332987e5cdd3e026bad930fc87dfd245 (diff)
downloaddiscordbot-7aa7a45e3f46fd1bc3a965c0c4a40bded288d7a8.tar.gz
discordbot-7aa7a45e3f46fd1bc3a965c0c4a40bded288d7a8.zip
it's done
Diffstat (limited to 'commands/about.js')
-rw-r--r--commands/about.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/commands/about.js b/commands/about.js
new file mode 100644
index 0000000..3e8be67
--- /dev/null
+++ b/commands/about.js
@@ -0,0 +1,21 @@
+#!/usr/bin/node
+/* jshint esnext:true */
+"use strict";
+
+const Commando = require("discord.js-commando"),
+ oneLine = require("common-tags").oneLine,
+ responses = require("../responses");
+
+module.exports = class ShowMatchCommand extends Commando.Command {
+ constructor(client) {
+ super(client, {
+ name: "about",
+ group: "util",
+ memberName: "about",
+ description: "Shows invite links and developer contact details."
+ });
+ }
+ async run(msg) {
+ await responses.showAbout(msg);
+ }
+};