type command = unit Cmdliner.Term.t * Cmdliner.Term.info
Cmdliner
commands.
val default : command
The default command: show a summary of the commands.
val commands : command list
List of available sub-commands.
Create a command-line tool with the given subcommands.
Command-builder helper
type sub = {
name : string; |
doc : string; |
man : Cmdliner.Manpage.block list; |
term : unit Cmdliner.Term.t; |
}
Subcommand.