@qbyco/tjs-cli
Version:
TrafaletJS CLI Tool
31 lines (27 loc) • 388 B
JavaScript
/**
* @module lib/cli/Command/CLICommand
*/
class CLICommand {
/**
* @constructor
* @param {String} name
*/
constructor(name) {
this.name = name;
}
/**
* @method getName
* @returns {String}
*/
getName() {
return this.name;
}
/**
* @method help
*/
help () {
let help = new Map();
return help;
}
}
module.exports = CLICommand;