diff --git a/commands/help.js b/commands/help.js index 1a34d1e..536ad05 100644 --- a/commands/help.js +++ b/commands/help.js @@ -6,6 +6,7 @@ module.exports = { execute(message) { message.reply( `!help - Lists the available commands + **!key** - Testing remote Airtable: *!key url* **!search** - Searches the RSS Sources: *!search google* **!get** - Retrieves Search By Index: *!get 25* **!add** - Add a new RSS Source Feed dynamically: *!add http://www.engadget.com/rss.xml* diff --git a/commands/key.js b/commands/key.js new file mode 100644 index 0000000..dcacffe --- /dev/null +++ b/commands/key.js @@ -0,0 +1,13 @@ +var libFlayer = require("../libFlayer.js"); + +module.exports = { + name: 'key', + description: 'Key', + execute(message) { + message.reply( + ` + Key loading not yet available - loading from local source + ` + ); + } +}; \ No newline at end of file