root.go 267 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
package main

import (
	cmds "github.com/jbenet/go-ipfs/commands"
	"github.com/jbenet/go-ipfs/core/commands"
)

var Root = &cmds.Command{
	Options: commands.Root.Options,
	Help:    commands.Root.Help,
	Subcommands: map[string]*cmds.Command{
12
		"daemon": Daemon,
13 14
	},
}