ipfs.go 350 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
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{
Brian Tiger Chow's avatar
Brian Tiger Chow committed
12 13 14
		"daemon": daemonCmd, // TODO name
		"init":   initCmd,   // TODO name
		"tour":   cmdTour,
15 16
	},
}