1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-06-30 18:13:54 +08:00

fix(cmd/ipfs2/daemon) imports

This commit is contained in:
Brian Tiger Chow
2014-10-29 00:29:36 -07:00
committed by Juan Batiz-Benet
parent 8c56280cb9
commit 026c30fa71
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ import (
cmds "github.com/jbenet/go-ipfs/commands"
cmdsHttp "github.com/jbenet/go-ipfs/commands/http"
"github.com/jbenet/go-ipfs/core"
"github.com/jbenet/go-ipfs/daemon"
daemon "github.com/jbenet/go-ipfs/daemon2"
)
var Daemon = &cmds.Command{

View File

@ -12,7 +12,7 @@ import (
"github.com/jbenet/go-ipfs/config"
"github.com/jbenet/go-ipfs/core"
commands "github.com/jbenet/go-ipfs/core/commands2"
"github.com/jbenet/go-ipfs/daemon"
daemon "github.com/jbenet/go-ipfs/daemon2"
u "github.com/jbenet/go-ipfs/util"
)