@athenna/core
Version:
One foundation for multiple applications.
28 lines (27 loc) • 589 B
JavaScript
/**
* @athenna/core
*
* (c) João Lenon <lenon@athenna.io>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
export class Command {
/**
* The command signature that will be used for calling
* the command.
*/
static signature() {
return '';
}
/**
* The command help description that will be displayed.
*/
static help() {
return '';
}
/**
* The action to be executed when the command is called.
*/
static action(_) { }
}