summaryrefslogtreecommitdiff
path: root/commands/about.js
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2017-04-17 19:09:47 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2017-04-17 19:09:47 +0200
commitbfd1b7f962378f0cfa3e765aacff30acc8d475de (patch)
tree5587f8fb66f4d40a1e51dcc317724bccc736a750 /commands/about.js
parent6e2f2c80463e8d19c24edebbe85331f6b083cf06 (diff)
downloaddiscordbot-bfd1b7f962378f0cfa3e765aacff30acc8d475de.tar.gz
discordbot-bfd1b7f962378f0cfa3e765aacff30acc8d475de.zip
some last text fixes
Diffstat (limited to 'commands/about.js')
-rw-r--r--commands/about.js21
1 files changed, 0 insertions, 21 deletions
diff --git a/commands/about.js b/commands/about.js
deleted file mode 100644
index 3e8be67..0000000
--- a/commands/about.js
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/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);
- }
-};