diff options
Diffstat (limited to '')
-rw-r--r-- | templateCommand.js (renamed from server/src/commands/core/showcase.js) | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/server/src/commands/core/showcase.js b/templateCommand.js index 5eca4a2..1f2cdd9 100644 --- a/server/src/commands/core/showcase.js +++ b/templateCommand.js @@ -2,8 +2,6 @@ Description: This is a template module that should not be on prod */ -'use strict'; - // you can require() modules here // this function will only be only in the scope of the module @@ -45,9 +43,7 @@ exports.init = (core) => { exports.requiredData = ['echo']; // optional parameters are marked, all others are required -exports.info = { +exports.info = { name: 'showcase', // actual command name - aliases: ['templateModule'], // optional, an array of other names this module can be executed by - usage: 'showcase {echo}', // used for help output, can be ommited if no parameters are required - description: 'Simple command module template & info' // used for help output + aliases: ['templateModule'] }; |