rythm.~cmd_index.html Maven / Gradle / Ivy
@import act.cli.*
@args Set appCommands, Set sysCommands
CLI Help
@def listCommands(Set cmds) {
Name
Shortcut
Help
@for(CliCmdInfo cmd: cmds) {
@cmd.name
@cmd.shortcut
@cmd.help
}
}
@if(appCommands) {
App Commands
@listCommands(appCommands)
}
System Commands
@listCommands(sysCommands)