mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-27 13:27:50 +08:00
16 lines
301 B
Go
16 lines
301 B
Go
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{
|
|
"daemon": daemonCmd,
|
|
"init": initCmd,
|
|
},
|
|
}
|