summaryrefslogtreecommitdiff
path: root/commands/about.js
blob: 3e8be67c1f6e8e0bfd6283df67d5716afc377835 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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);
    }
};