1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-06-04 13:07:46 +08:00
Files
kubo/core/commands/commands.go
Juan Batiz-Benet 0c8ae7674e loggers: set level
2014-10-04 03:53:21 -07:00

13 lines
224 B
Go

package commands
import (
"io"
"github.com/jbenet/go-ipfs/core"
u "github.com/jbenet/go-ipfs/util"
)
var log = u.Logger("commands")
type CmdFunc func(*core.IpfsNode, []string, map[string]interface{}, io.Writer) error