From 511005814b9afbe0618ed8d5901a352ad556324c Mon Sep 17 00:00:00 2001 From: schneefux Date: Mon, 17 Apr 2017 19:11:15 +0200 Subject: too tired to notice missing files --- commands/vainsocial/about.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 commands/vainsocial/about.js (limited to 'commands') diff --git a/commands/vainsocial/about.js b/commands/vainsocial/about.js new file mode 100644 index 0000000..22d7fb4 --- /dev/null +++ b/commands/vainsocial/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 ShowAboutCommand extends Commando.Command { + constructor(client) { + super(client, { + name: "about", + group: "vainsocial", + memberName: "about", + description: "Shows invite links and developer contact details." + }); + } + async run(msg) { + await responses.showAbout(msg); + } +}; -- cgit v1.3.1