blob: cad2951849c1f525a029b2c4e160d7842fbf3b43 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
const utils = require("../src/utils");
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 });
});
};
|