mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-25 12:27:43 +08:00
15 lines
267 B
Go
15 lines
267 B
Go
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{
|
|
"daemon": Daemon,
|
|
},
|
|
}
|