added README.md clean up commands

This commit is contained in:
johnfacey
2021-03-18 19:28:26 -05:00
parent eb818a0f39
commit c6c7661980
10 changed files with 67 additions and 22 deletions

View File

@@ -4,6 +4,10 @@ module.exports = {
name: 'help',
description: 'Help',
execute(message) {
message.reply('For a list of available commands type !commands');
message.reply('!help - Lists the available commands');
message.reply('**!search** - Searches the RSS Sources: *!search google*');
message.reply('**!get**- Retrieves Search By Index: *!get 25*');
message.reply('**!add** - Add a new RSS Source Feed dynamically: *!add http://www.engadget.com/rss.xml*');
message.reply('**!update** - Updates all current RSS Feeds: *!update*');
}
};