| 12345678910111213141516 | package base// RootCommand is the root command of all commandsvar RootCommand *Commandfunc init() {	RootCommand = &Command{		UsageLine: CommandEnv.Exec,		Long:      "The root command",	}}// RegisterCommand register a command to RootCommandfunc RegisterCommand(cmd *Command) {	RootCommand.Commands = append(RootCommand.Commands, cmd)}
 |