diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-04-17 19:11:15 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-04-17 19:11:15 +0200 |
| commit | 511005814b9afbe0618ed8d5901a352ad556324c (patch) | |
| tree | 025af74e7885677fd4dc3b779a17c6b51c9e6708 | |
| parent | bfd1b7f962378f0cfa3e765aacff30acc8d475de (diff) | |
| download | discordbot-511005814b9afbe0618ed8d5901a352ad556324c.tar.gz discordbot-511005814b9afbe0618ed8d5901a352ad556324c.zip | |
too tired to notice missing files
| -rw-r--r-- | commands/vainsocial/about.js | 21 |
1 files changed, 21 insertions, 0 deletions
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); + } +}; |
