rythm.~cmd_index.html Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of act Show documentation
Show all versions of act Show documentation
The ACT full stack MVC framework
@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)