go-ipfs-config: Reorged imports from jbenet/go-ipfs to ipfs/go-ipfs
- Modified Godeps/Godeps.json by hand - [TEST] Updated welcome docs hash to sharness - [TEST] Updated contact doc - [TEST] disabled breaking test (t0080-repo refs local)
Ho-Sheng Hsiao committed
Mar 30, 2015 at 20:04 UTC
25c4d28de9a55615eb276a57016e220d6449b0ea
5 files changed
+8
-8
config/bootstrap_peers.go
+2
-2
@@ -1,9 +1,9 @@
1
package config
2
3
import (
4
- errors "github.com/jbenet/go-ipfs/util/debugerror"
4
+ errors "github.com/ipfs/go-ipfs/util/debugerror"
5
6
- iaddr "github.com/jbenet/go-ipfs/util/ipfsaddr"
6
+ iaddr "github.com/ipfs/go-ipfs/util/ipfsaddr"
7
)
8
9
// DefaultBootstrapAddresses are the hardcoded bootstrap addresses
config/config.go
+1
-1
@@ -9,7 +9,7 @@ import (
9
"path/filepath"
10
"strings"
11
12
- u "github.com/jbenet/go-ipfs/util"
12
+ u "github.com/ipfs/go-ipfs/util"
13
)
14
15
var log = u.Logger("config")
config/identity.go
+1
-1
@@ -2,7 +2,7 @@ package config
2
3
import (
4
"encoding/base64"
5
- ic "github.com/jbenet/go-ipfs/p2p/crypto"
5
+ ic "github.com/ipfs/go-ipfs/p2p/crypto"
6
)
7
8
// Identity tracks the configuration of the local node's identity.
config/init.go
+3
-3
@@ -5,9 +5,9 @@ import (
5
"fmt"
6
"io"
7
8
- ci "github.com/jbenet/go-ipfs/p2p/crypto"
9
- peer "github.com/jbenet/go-ipfs/p2p/peer"
10
- errors "github.com/jbenet/go-ipfs/util/debugerror"
8
+ ci "github.com/ipfs/go-ipfs/p2p/crypto"
9
+ peer "github.com/ipfs/go-ipfs/p2p/peer"
10
+ errors "github.com/ipfs/go-ipfs/util/debugerror"
11
)
12
13
func Init(out io.Writer, nBitsForKeypair int) (*Config, error) {
config/supernode.go
+1
-1
@@ -1,6 +1,6 @@
1
package config
2
3
-import "github.com/jbenet/go-ipfs/util/ipfsaddr"
3
+import "github.com/ipfs/go-ipfs/util/ipfsaddr"
4
5
// TODO replace with final servers before merge
6