1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-08-06 19:44:01 +08:00

go-ipfs-config: initial vendoring of libp2p outside of the repo with gx

License: MIT
Signed-off-by: Jeromy <jeromyj@gmail.com>
This commit is contained in:
Jeromy
2016-01-27 14:28:34 -08:00
parent b94954635f
commit ac586580ba
3 changed files with 4 additions and 4 deletions

View File

@ -10,7 +10,7 @@ import (
"strings"
u "github.com/ipfs/go-ipfs/util"
logging "github.com/ipfs/go-ipfs/vendor/QmQg1J6vikuXF9oDvm4wpdeAUvvkVEKW1EYDw9HhTMnP2b/go-log"
logging "gx/ipfs/QmaPaGNE2GqnfJjRRpQuQuFHuJn4FZvsrGxdik4kgxCkBi/go-log"
)
var log = logging.Logger("config")

View File

@ -2,7 +2,7 @@ package config
import (
"encoding/base64"
ic "github.com/ipfs/go-ipfs/p2p/crypto"
ic "gx/ipfs/QmY3NAw959vbE1oJooP9HchcRdBsbxhgQsEZTRhKgvoSuC/go-libp2p/p2p/crypto"
)
// Identity tracks the configuration of the local node's identity.

View File

@ -6,8 +6,8 @@ import (
"fmt"
"io"
ci "github.com/ipfs/go-ipfs/p2p/crypto"
peer "github.com/ipfs/go-ipfs/p2p/peer"
ci "gx/ipfs/QmY3NAw959vbE1oJooP9HchcRdBsbxhgQsEZTRhKgvoSuC/go-libp2p/p2p/crypto"
peer "gx/ipfs/QmY3NAw959vbE1oJooP9HchcRdBsbxhgQsEZTRhKgvoSuC/go-libp2p/p2p/peer"
)
func Init(out io.Writer, nBitsForKeypair int) (*Config, error) {