aboutsummaryrefslogtreecommitdiff
path: root/src/modules/help.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/help.js')
-rw-r--r--src/modules/help.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/modules/help.js b/src/modules/help.js
deleted file mode 100644
index 076b371..0000000
--- a/src/modules/help.js
+++ /dev/null
@@ -1,13 +0,0 @@
-const utils = require("../utils");
-const config = require('../config');
-
-module.exports = ({ bot, knex, config, commands }) => {
- commands.addInboxServerCommand('help', [], async (msg, args, thread) => {
- let embed = {
- title: "ModMail - Help",
- type: "rich",
- description: "[mm.bot/commands](https://gist.github.com/8cy/1ecb7106d096f77394122cfa4fae77ad)"
- };
- utils.postSystemMessageWithFallback(msg.channel, thread, { embed });
- });
-};