cmd/ipfs2: Added a 'commands' command for CLI root

This commit is contained in:
Matt Bell 2014-11-12 16:55:21 -08:00 committed by Juan Batiz-Benet
parent f797d13579
commit 092524fcbb

View File

@ -11,9 +11,10 @@ var Root = &cmds.Command{
}
var rootSubcommands = map[string]*cmds.Command{
"daemon": daemonCmd, // TODO name
"init": initCmd, // TODO name
"tour": cmdTour,
"daemon": daemonCmd, // TODO name
"init": initCmd, // TODO name
"tour": cmdTour,
"commands": commands.CommandsCmd(Root),
}
func init() {