package main import ( cmds "github.com/jbenet/go-ipfs/commands" commands "github.com/jbenet/go-ipfs/core/commands2" ) var Root = &cmds.Command{ Options: commands.Root.Options, Help: commands.Root.Help, Subcommands: map[string]*cmds.Command{
"daemon": daemonCmd, // TODO name "init": initCmd, // TODO name "tour": cmdTour,
}, }