mirror of
https://github.com/ipfs/kubo.git
synced 2025-06-04 13:07:46 +08:00
13 lines
224 B
Go
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
|