adding key command template
This commit is contained in:
@@ -6,6 +6,7 @@ module.exports = {
|
|||||||
execute(message) {
|
execute(message) {
|
||||||
message.reply(
|
message.reply(
|
||||||
`!help - Lists the available commands
|
`!help - Lists the available commands
|
||||||
|
**!key** - Testing remote Airtable: *!key url*
|
||||||
**!search** - Searches the RSS Sources: *!search google*
|
**!search** - Searches the RSS Sources: *!search google*
|
||||||
**!get** - Retrieves Search By Index: *!get 25*
|
**!get** - Retrieves Search By Index: *!get 25*
|
||||||
**!add** - Add a new RSS Source Feed dynamically: *!add http://www.engadget.com/rss.xml*
|
**!add** - Add a new RSS Source Feed dynamically: *!add http://www.engadget.com/rss.xml*
|
||||||
|
|||||||
13
commands/key.js
Normal file
13
commands/key.js
Normal file
@@ -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
|
||||||
|
`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user