github.com/zignig/go-ipfs@v0.0.0-20141111235910-c9e5fdf55a52/cmd/ipfs2/ipfs.go (about)

     1  package main
     2  
     3  import (
     4  	cmds "github.com/jbenet/go-ipfs/commands"
     5  	commands "github.com/jbenet/go-ipfs/core/commands2"
     6  )
     7  
     8  var Root = &cmds.Command{
     9  	Options: commands.Root.Options,
    10  	Help:    commands.Root.Help,
    11  	Subcommands: map[string]*cmds.Command{
    12  		"daemon": daemonCmd, // TODO name
    13  		"init":   initCmd,   // TODO name
    14  		"tour":   cmdTour,
    15  	},
    16  }