mrmBot-Matrix/commands/help.js

7 lines
332 B
JavaScript
Raw Normal View History

2019-09-13 20:02:41 +00:00
const database = require("../utils/database.js");
exports.run = async (message) => {
const guildConf = database.settings.get(message.channel.guild.id);
return `${message.author.mention}, my command list can be found here: https://essem.space/esmBot/commands.html?dev=true\nThis server's prefix is \`${guildConf.prefix}\`.`;
2019-09-13 20:02:41 +00:00
};