1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-06-04 13:07:46 +08:00

transitioned ipfs2 -> ipfs

This commit is contained in:
Juan Batiz-Benet
2014-11-18 02:39:48 -08:00
parent ad3f3e003f
commit 5aaa45db9a
38 changed files with 4 additions and 4 deletions

View File

@ -10,8 +10,8 @@ import (
cmds "github.com/jbenet/go-ipfs/commands" cmds "github.com/jbenet/go-ipfs/commands"
cmdsHttp "github.com/jbenet/go-ipfs/commands/http" cmdsHttp "github.com/jbenet/go-ipfs/commands/http"
core "github.com/jbenet/go-ipfs/core" core "github.com/jbenet/go-ipfs/core"
commands "github.com/jbenet/go-ipfs/core/commands2" commands "github.com/jbenet/go-ipfs/core/commands"
daemon "github.com/jbenet/go-ipfs/daemon2" daemon "github.com/jbenet/go-ipfs/core/daemon"
util "github.com/jbenet/go-ipfs/util" util "github.com/jbenet/go-ipfs/util"
"github.com/jbenet/go-ipfs/util/debugerror" "github.com/jbenet/go-ipfs/util/debugerror"
) )

View File

@ -4,7 +4,7 @@ import (
"fmt" "fmt"
cmds "github.com/jbenet/go-ipfs/commands" cmds "github.com/jbenet/go-ipfs/commands"
commands "github.com/jbenet/go-ipfs/core/commands2" commands "github.com/jbenet/go-ipfs/core/commands"
) )
// This is the CLI root, used for executing commands accessible to CLI clients. // This is the CLI root, used for executing commands accessible to CLI clients.

View File

@ -19,7 +19,7 @@ import (
cmdsHttp "github.com/jbenet/go-ipfs/commands/http" cmdsHttp "github.com/jbenet/go-ipfs/commands/http"
config "github.com/jbenet/go-ipfs/config" config "github.com/jbenet/go-ipfs/config"
core "github.com/jbenet/go-ipfs/core" core "github.com/jbenet/go-ipfs/core"
daemon "github.com/jbenet/go-ipfs/daemon2" daemon "github.com/jbenet/go-ipfs/core/daemon"
updates "github.com/jbenet/go-ipfs/updates" updates "github.com/jbenet/go-ipfs/updates"
u "github.com/jbenet/go-ipfs/util" u "github.com/jbenet/go-ipfs/util"
"github.com/jbenet/go-ipfs/util/debugerror" "github.com/jbenet/go-ipfs/util/debugerror"