kubo/core/commands/commands.go
2014-10-01 00:25:52 -07:00

14 lines
286 B
Go

package commands
import (
"io"
"github.com/jbenet/go-ipfs/core"
logging "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/op/go-logging"
)
var log = logging.MustGetLogger("commands")
type CmdFunc func(*core.IpfsNode, []string, map[string]interface{}, io.Writer) error