mirror of
https://github.com/ipfs/kubo.git
synced 2026-03-10 10:47:51 +08:00
fix: rewrite dependencies over the go-ipfs-config package
This commit is contained in:
parent
c9cf47dad5
commit
8d549f03f3
@ -17,10 +17,10 @@ import (
|
||||
multierror "github.com/hashicorp/go-multierror"
|
||||
|
||||
version "github.com/ipfs/go-ipfs"
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
cserial "github.com/ipfs/go-ipfs-config/serialize"
|
||||
utilmain "github.com/ipfs/go-ipfs/cmd/ipfs/util"
|
||||
oldcmds "github.com/ipfs/go-ipfs/commands"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
cserial "github.com/ipfs/go-ipfs/config/serialize"
|
||||
"github.com/ipfs/go-ipfs/core"
|
||||
commands "github.com/ipfs/go-ipfs/core/commands"
|
||||
"github.com/ipfs/go-ipfs/core/coreapi"
|
||||
|
||||
@ -19,8 +19,8 @@ import (
|
||||
unixfs "github.com/ipfs/go-unixfs"
|
||||
|
||||
cmds "github.com/ipfs/go-ipfs-cmds"
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
files "github.com/ipfs/go-ipfs-files"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
options "github.com/ipfs/interface-go-ipfs-core/options"
|
||||
)
|
||||
|
||||
|
||||
@ -24,8 +24,8 @@ import (
|
||||
cmds "github.com/ipfs/go-ipfs-cmds"
|
||||
"github.com/ipfs/go-ipfs-cmds/cli"
|
||||
cmdhttp "github.com/ipfs/go-ipfs-cmds/http"
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
u "github.com/ipfs/go-ipfs-util"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
logging "github.com/ipfs/go-log"
|
||||
loggables "github.com/libp2p/go-libp2p-loggables"
|
||||
ma "github.com/multiformats/go-multiaddr"
|
||||
|
||||
@ -13,7 +13,7 @@ import (
|
||||
logging "github.com/ipfs/go-log"
|
||||
pinclient "github.com/ipfs/go-pinning-service-http-client"
|
||||
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
"github.com/ipfs/go-ipfs/core"
|
||||
)
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
ipld "github.com/ipfs/go-ipld-format"
|
||||
merkledag "github.com/ipfs/go-merkledag"
|
||||
"github.com/libp2p/go-libp2p-core/host"
|
||||
|
||||
@ -1,3 +1,4 @@
|
||||
//go:build !plan9
|
||||
// +build !plan9
|
||||
|
||||
package main
|
||||
@ -18,8 +19,8 @@ import (
|
||||
fsrepo "github.com/ipfs/go-ipfs/repo/fsrepo"
|
||||
|
||||
fsnotify "github.com/fsnotify/fsnotify"
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
files "github.com/ipfs/go-ipfs-files"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
process "github.com/jbenet/goprocess"
|
||||
homedir "github.com/mitchellh/go-homedir"
|
||||
)
|
||||
|
||||
@ -11,7 +11,7 @@ import (
|
||||
loader "github.com/ipfs/go-ipfs/plugin/loader"
|
||||
|
||||
cmds "github.com/ipfs/go-ipfs-cmds"
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
logging "github.com/ipfs/go-log"
|
||||
coreiface "github.com/ipfs/interface-go-ipfs-core"
|
||||
options "github.com/ipfs/interface-go-ipfs-core/options"
|
||||
|
||||
@ -8,7 +8,7 @@ import (
|
||||
"os"
|
||||
"path/filepath"
|
||||
|
||||
"github.com/ipfs/go-ipfs-config"
|
||||
"github.com/ipfs/go-ipfs/config"
|
||||
|
||||
"github.com/facebookgo/atomicfile"
|
||||
)
|
||||
|
||||
@ -5,7 +5,7 @@ import (
|
||||
"runtime"
|
||||
"testing"
|
||||
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
)
|
||||
|
||||
func TestConfig(t *testing.T) {
|
||||
|
||||
@ -11,7 +11,7 @@ import (
|
||||
fsrepo "github.com/ipfs/go-ipfs/repo/fsrepo"
|
||||
|
||||
cmds "github.com/ipfs/go-ipfs-cmds"
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
peer "github.com/libp2p/go-libp2p-core/peer"
|
||||
ma "github.com/multiformats/go-multiaddr"
|
||||
)
|
||||
|
||||
@ -9,7 +9,7 @@ import (
|
||||
"github.com/ipfs/go-ipfs/core"
|
||||
|
||||
cmds "github.com/ipfs/go-ipfs-cmds"
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
logging "github.com/ipfs/go-log"
|
||||
coreiface "github.com/ipfs/interface-go-ipfs-core"
|
||||
options "github.com/ipfs/interface-go-ipfs-core/options"
|
||||
|
||||
@ -16,7 +16,7 @@ import (
|
||||
|
||||
"github.com/elgris/jsondiff"
|
||||
cmds "github.com/ipfs/go-ipfs-cmds"
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
)
|
||||
|
||||
// ConfigUpdateOutput is config profile apply command's output
|
||||
|
||||
@ -14,9 +14,9 @@ import (
|
||||
"text/tabwriter"
|
||||
|
||||
cmds "github.com/ipfs/go-ipfs-cmds"
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
keystore "github.com/ipfs/go-ipfs-keystore"
|
||||
oldcmds "github.com/ipfs/go-ipfs/commands"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
cmdenv "github.com/ipfs/go-ipfs/core/commands/cmdenv"
|
||||
"github.com/ipfs/go-ipfs/core/commands/e"
|
||||
ke "github.com/ipfs/go-ipfs/core/commands/keyencode"
|
||||
|
||||
@ -1,3 +1,4 @@
|
||||
//go:build !windows && !nofuse
|
||||
// +build !windows,!nofuse
|
||||
|
||||
package commands
|
||||
@ -10,7 +11,7 @@ import (
|
||||
nodeMount "github.com/ipfs/go-ipfs/fuse/node"
|
||||
|
||||
cmds "github.com/ipfs/go-ipfs-cmds"
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
)
|
||||
|
||||
const (
|
||||
|
||||
@ -17,7 +17,7 @@ import (
|
||||
|
||||
cid "github.com/ipfs/go-cid"
|
||||
cmds "github.com/ipfs/go-ipfs-cmds"
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
"github.com/ipfs/go-ipfs/core/commands/cmdenv"
|
||||
fsrepo "github.com/ipfs/go-ipfs/repo/fsrepo"
|
||||
logging "github.com/ipfs/go-log"
|
||||
|
||||
@ -16,7 +16,7 @@ import (
|
||||
fsrepo "github.com/ipfs/go-ipfs/repo/fsrepo"
|
||||
|
||||
cmds "github.com/ipfs/go-ipfs-cmds"
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
inet "github.com/libp2p/go-libp2p-core/network"
|
||||
peer "github.com/libp2p/go-libp2p-core/peer"
|
||||
ma "github.com/multiformats/go-multiaddr"
|
||||
|
||||
@ -9,7 +9,7 @@ import (
|
||||
|
||||
datastore "github.com/ipfs/go-datastore"
|
||||
syncds "github.com/ipfs/go-datastore/sync"
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
)
|
||||
|
||||
func TestInitialization(t *testing.T) {
|
||||
|
||||
@ -9,7 +9,7 @@ import (
|
||||
"testing"
|
||||
|
||||
"github.com/ipfs/go-filestore"
|
||||
"github.com/ipfs/go-ipfs-keystore"
|
||||
keystore "github.com/ipfs/go-ipfs-keystore"
|
||||
"github.com/ipfs/go-ipfs/core"
|
||||
"github.com/ipfs/go-ipfs/core/bootstrap"
|
||||
"github.com/ipfs/go-ipfs/core/coreapi"
|
||||
@ -19,12 +19,12 @@ import (
|
||||
|
||||
"github.com/ipfs/go-datastore"
|
||||
syncds "github.com/ipfs/go-datastore/sync"
|
||||
"github.com/ipfs/go-ipfs-config"
|
||||
"github.com/ipfs/go-ipfs/config"
|
||||
coreiface "github.com/ipfs/interface-go-ipfs-core"
|
||||
"github.com/ipfs/interface-go-ipfs-core/tests"
|
||||
"github.com/libp2p/go-libp2p-core/crypto"
|
||||
peer "github.com/libp2p/go-libp2p-core/peer"
|
||||
"github.com/libp2p/go-libp2p/p2p/net/mock"
|
||||
mocknet "github.com/libp2p/go-libp2p/p2p/net/mock"
|
||||
)
|
||||
|
||||
const testPeerID = "QmTFauExutTsy4XP6JbMFcw2Wa9645HJt2bTqL6qYDCKfe"
|
||||
|
||||
@ -16,7 +16,7 @@ import (
|
||||
|
||||
cmds "github.com/ipfs/go-ipfs-cmds"
|
||||
cmdsHttp "github.com/ipfs/go-ipfs-cmds/http"
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
path "github.com/ipfs/go-path"
|
||||
)
|
||||
|
||||
|
||||
@ -19,8 +19,8 @@ import (
|
||||
|
||||
datastore "github.com/ipfs/go-datastore"
|
||||
syncds "github.com/ipfs/go-datastore/sync"
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
files "github.com/ipfs/go-ipfs-files"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
path "github.com/ipfs/go-path"
|
||||
iface "github.com/ipfs/interface-go-ipfs-core"
|
||||
nsopts "github.com/ipfs/interface-go-ipfs-core/options/namesys"
|
||||
|
||||
@ -18,7 +18,7 @@ import (
|
||||
|
||||
mbase "github.com/multiformats/go-multibase"
|
||||
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
iface "github.com/ipfs/interface-go-ipfs-core"
|
||||
options "github.com/ipfs/interface-go-ipfs-core/options"
|
||||
nsopts "github.com/ipfs/interface-go-ipfs-core/options/namesys"
|
||||
|
||||
@ -7,8 +7,8 @@ import (
|
||||
"testing"
|
||||
|
||||
cid "github.com/ipfs/go-cid"
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
files "github.com/ipfs/go-ipfs-files"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
coreapi "github.com/ipfs/go-ipfs/core/coreapi"
|
||||
path "github.com/ipfs/go-path"
|
||||
)
|
||||
|
||||
@ -21,9 +21,9 @@ import (
|
||||
"github.com/ipfs/go-datastore"
|
||||
syncds "github.com/ipfs/go-datastore/sync"
|
||||
blockstore "github.com/ipfs/go-ipfs-blockstore"
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
files "github.com/ipfs/go-ipfs-files"
|
||||
pi "github.com/ipfs/go-ipfs-posinfo"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
dag "github.com/ipfs/go-merkledag"
|
||||
coreiface "github.com/ipfs/interface-go-ipfs-core"
|
||||
)
|
||||
|
||||
@ -13,7 +13,7 @@ import (
|
||||
|
||||
"github.com/ipfs/go-datastore"
|
||||
syncds "github.com/ipfs/go-datastore/sync"
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
|
||||
"github.com/libp2p/go-libp2p"
|
||||
"github.com/libp2p/go-libp2p-core/host"
|
||||
|
||||
@ -6,8 +6,8 @@ import (
|
||||
"github.com/ipfs/go-bitswap"
|
||||
"github.com/ipfs/go-bitswap/network"
|
||||
blockstore "github.com/ipfs/go-ipfs-blockstore"
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
exchange "github.com/ipfs/go-ipfs-exchange-interface"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
"github.com/libp2p/go-libp2p-core/host"
|
||||
"github.com/libp2p/go-libp2p-core/routing"
|
||||
"go.uber.org/fx"
|
||||
|
||||
@ -14,7 +14,7 @@ import (
|
||||
|
||||
ds "github.com/ipfs/go-datastore"
|
||||
dsync "github.com/ipfs/go-datastore/sync"
|
||||
cfg "github.com/ipfs/go-ipfs-config"
|
||||
cfg "github.com/ipfs/go-ipfs/config"
|
||||
"github.com/libp2p/go-libp2p-core/crypto"
|
||||
peer "github.com/libp2p/go-libp2p-core/peer"
|
||||
)
|
||||
|
||||
@ -6,7 +6,7 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
doh "github.com/libp2p/go-doh-resolver"
|
||||
madns "github.com/multiformats/go-multiaddr-dns"
|
||||
|
||||
|
||||
@ -7,8 +7,8 @@ import (
|
||||
"time"
|
||||
|
||||
blockstore "github.com/ipfs/go-ipfs-blockstore"
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
util "github.com/ipfs/go-ipfs-util"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
"github.com/ipfs/go-log"
|
||||
"github.com/libp2p/go-libp2p-core/peer"
|
||||
pubsub "github.com/libp2p/go-libp2p-pubsub"
|
||||
|
||||
@ -6,7 +6,7 @@ import (
|
||||
"time"
|
||||
|
||||
version "github.com/ipfs/go-ipfs"
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
|
||||
logging "github.com/ipfs/go-log"
|
||||
"github.com/libp2p/go-libp2p"
|
||||
|
||||
@ -3,7 +3,7 @@ package libp2p
|
||||
import (
|
||||
"time"
|
||||
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
"github.com/libp2p/go-libp2p"
|
||||
)
|
||||
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
package libp2p
|
||||
|
||||
import (
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
"github.com/libp2p/go-libp2p-core/peer"
|
||||
|
||||
"github.com/libp2p/go-libp2p"
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
package libp2p
|
||||
|
||||
import (
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
"github.com/libp2p/go-libp2p"
|
||||
noise "github.com/libp2p/go-libp2p-noise"
|
||||
tls "github.com/libp2p/go-libp2p-tls"
|
||||
|
||||
@ -5,7 +5,7 @@ import (
|
||||
"os"
|
||||
"strings"
|
||||
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
"github.com/libp2p/go-libp2p"
|
||||
smux "github.com/libp2p/go-libp2p-core/mux"
|
||||
mplex "github.com/libp2p/go-libp2p-mplex"
|
||||
|
||||
@ -3,7 +3,7 @@ package libp2p
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
libp2p "github.com/libp2p/go-libp2p"
|
||||
metrics "github.com/libp2p/go-libp2p-core/metrics"
|
||||
libp2pquic "github.com/libp2p/go-libp2p-quic-transport"
|
||||
|
||||
@ -3,7 +3,7 @@ package node
|
||||
import (
|
||||
"github.com/ipfs/go-datastore"
|
||||
blockstore "github.com/ipfs/go-ipfs-blockstore"
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
"go.uber.org/fx"
|
||||
|
||||
"github.com/ipfs/go-filestore"
|
||||
|
||||
1
go.mod
1
go.mod
@ -32,7 +32,6 @@ require (
|
||||
github.com/ipfs/go-ipfs-blockstore v1.1.2
|
||||
github.com/ipfs/go-ipfs-chunker v0.0.5
|
||||
github.com/ipfs/go-ipfs-cmds v0.6.0
|
||||
github.com/ipfs/go-ipfs-config v0.19.0
|
||||
github.com/ipfs/go-ipfs-exchange-interface v0.1.0
|
||||
github.com/ipfs/go-ipfs-exchange-offline v0.1.1
|
||||
github.com/ipfs/go-ipfs-files v0.0.9
|
||||
|
||||
2
go.sum
2
go.sum
@ -476,8 +476,6 @@ github.com/ipfs/go-ipfs-chunker v0.0.5 h1:ojCf7HV/m+uS2vhUGWcogIIxiO5ubl5O57Q7Na
|
||||
github.com/ipfs/go-ipfs-chunker v0.0.5/go.mod h1:jhgdF8vxRHycr00k13FM8Y0E+6BoalYeobXmUyTreP8=
|
||||
github.com/ipfs/go-ipfs-cmds v0.6.0 h1:yAxdowQZzoFKjcLI08sXVNnqVj3jnABbf9smrPQmBsw=
|
||||
github.com/ipfs/go-ipfs-cmds v0.6.0/go.mod h1:ZgYiWVnCk43ChwoH8hAmI1IRbuVtq3GSTHwtRB/Kqhk=
|
||||
github.com/ipfs/go-ipfs-config v0.19.0 h1:OuKIL+BkOZgJ+hb4Wg/9ynCtE/BaZBWcGy8hgdMepAo=
|
||||
github.com/ipfs/go-ipfs-config v0.19.0/go.mod h1:wz2lKzOjgJeYJa6zx8W9VT7mz+iSd0laBMqS/9wmX6A=
|
||||
github.com/ipfs/go-ipfs-delay v0.0.0-20181109222059-70721b86a9a8/go.mod h1:8SP1YXK1M1kXuc4KJZINY3TQQ03J2rwBG9QfXmbRPrw=
|
||||
github.com/ipfs/go-ipfs-delay v0.0.1 h1:r/UXYyRcddO6thwOnhiznIAiSvxMECGgtv35Xs1IeRQ=
|
||||
github.com/ipfs/go-ipfs-delay v0.0.1/go.mod h1:8SP1YXK1M1kXuc4KJZINY3TQQ03J2rwBG9QfXmbRPrw=
|
||||
|
||||
@ -42,7 +42,6 @@
|
||||
["ipfs/go-ipns", "go-ipns", "IPNS datastructures and validation logic"],
|
||||
|
||||
"Repo",
|
||||
["ipfs/go-ipfs-config", "go-ipfs-config", "go-ipfs config file definitions"],
|
||||
["ipfs/go-fs-lock", "go-fs-lock", "lockfile management functions"],
|
||||
["ipfs/fs-repo-migrations", "fs-repo-migrations", "repo migrations"],
|
||||
|
||||
|
||||
@ -8,8 +8,8 @@ import (
|
||||
"runtime"
|
||||
"strings"
|
||||
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
cserialize "github.com/ipfs/go-ipfs-config/serialize"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
cserialize "github.com/ipfs/go-ipfs/config/serialize"
|
||||
"github.com/ipld/go-ipld-prime/multicodec"
|
||||
|
||||
"github.com/ipfs/go-ipfs/core"
|
||||
|
||||
@ -10,7 +10,7 @@ import (
|
||||
"github.com/ipfs/go-ipfs/plugin/loader"
|
||||
"github.com/ipfs/go-ipfs/repo/fsrepo"
|
||||
|
||||
"github.com/ipfs/go-ipfs-config"
|
||||
"github.com/ipfs/go-ipfs/config"
|
||||
)
|
||||
|
||||
// note: to test sorting of the mountpoints in the disk spec they are
|
||||
|
||||
@ -20,9 +20,9 @@ import (
|
||||
ds "github.com/ipfs/go-datastore"
|
||||
measure "github.com/ipfs/go-ds-measure"
|
||||
lockfile "github.com/ipfs/go-fs-lock"
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
serialize "github.com/ipfs/go-ipfs-config/serialize"
|
||||
util "github.com/ipfs/go-ipfs-util"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
serialize "github.com/ipfs/go-ipfs/config/serialize"
|
||||
"github.com/ipfs/go-ipfs/repo/fsrepo/migrations"
|
||||
logging "github.com/ipfs/go-log"
|
||||
homedir "github.com/mitchellh/go-homedir"
|
||||
|
||||
@ -11,7 +11,7 @@ import (
|
||||
"github.com/ipfs/go-ipfs/thirdparty/assert"
|
||||
|
||||
datastore "github.com/ipfs/go-datastore"
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
)
|
||||
|
||||
// swap arg order
|
||||
|
||||
@ -12,8 +12,8 @@ import (
|
||||
"strings"
|
||||
"sync"
|
||||
|
||||
"github.com/ipfs/go-ipfs-config"
|
||||
files "github.com/ipfs/go-ipfs-files"
|
||||
"github.com/ipfs/go-ipfs/config"
|
||||
"github.com/ipfs/go-ipfs/core"
|
||||
"github.com/ipfs/go-ipfs/core/coreapi"
|
||||
"github.com/ipfs/go-ipfs/core/node/libp2p"
|
||||
|
||||
@ -15,7 +15,7 @@ import (
|
||||
"strings"
|
||||
"sync"
|
||||
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
)
|
||||
|
||||
const (
|
||||
|
||||
@ -9,7 +9,7 @@ import (
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
)
|
||||
|
||||
func TestFindMigrations(t *testing.T) {
|
||||
|
||||
@ -3,7 +3,7 @@ package fsrepo
|
||||
import (
|
||||
"os"
|
||||
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
homedir "github.com/mitchellh/go-homedir"
|
||||
)
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@ import (
|
||||
filestore "github.com/ipfs/go-filestore"
|
||||
keystore "github.com/ipfs/go-ipfs-keystore"
|
||||
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
ma "github.com/multiformats/go-multiaddr"
|
||||
)
|
||||
|
||||
|
||||
@ -9,7 +9,7 @@ import (
|
||||
keystore "github.com/ipfs/go-ipfs-keystore"
|
||||
|
||||
ds "github.com/ipfs/go-datastore"
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
ma "github.com/multiformats/go-multiaddr"
|
||||
)
|
||||
|
||||
|
||||
@ -12,7 +12,7 @@ import (
|
||||
|
||||
"github.com/ipfs/go-ipfs/thirdparty/unit"
|
||||
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
random "github.com/jbenet/go-random"
|
||||
)
|
||||
|
||||
|
||||
@ -11,7 +11,7 @@ import (
|
||||
|
||||
"github.com/ipfs/go-ipfs/thirdparty/unit"
|
||||
|
||||
config "github.com/ipfs/go-ipfs-config"
|
||||
config "github.com/ipfs/go-ipfs/config"
|
||||
random "github.com/jbenet/go-random"
|
||||
)
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user