1
0
mirror of https://github.com/hack-chat/main.git synced 2024-03-22 13:20:33 +08:00

Attempt 2

This commit is contained in:
Neel Kamath 2018-05-18 11:08:50 +05:30
parent 3da5c4465f
commit db807bc195

View File

@ -43,7 +43,9 @@ exports.init = (core) => {
exports.requiredData = ['echo']; exports.requiredData = ['echo'];
// optional parameters are marked, all others are required // optional parameters are marked, all others are required
exports.info = { exports.info = {
name: 'showcase', // actual command name 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
};