From db807bc195cf0dc87f632331040ac47f1f25ea3d Mon Sep 17 00:00:00 2001 From: Neel Kamath Date: Fri, 18 May 2018 11:08:50 +0530 Subject: Attempt 2 --- templateCommand.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'templateCommand.js') diff --git a/templateCommand.js b/templateCommand.js index 1f2cdd9..90b9aa3 100644 --- a/templateCommand.js +++ b/templateCommand.js @@ -43,7 +43,9 @@ 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'] -}; + 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 +}; \ No newline at end of file -- cgit v1.2.1