diff --git a/cluster/cluster.go b/cluster/cluster.go index b509715..c717441 100644 --- a/cluster/cluster.go +++ b/cluster/cluster.go @@ -1,7 +1,7 @@ package cluster import ( - "github.com/lbryio/errors.go" + "github.com/lbryio/lbry.go/errors" "github.com/hashicorp/serf/serf" log "github.com/sirupsen/logrus" diff --git a/db/db.go b/db/db.go index 4816989..01b0e5d 100644 --- a/db/db.go +++ b/db/db.go @@ -5,7 +5,7 @@ import ( "github.com/lbryio/reflector.go/types" - "github.com/lbryio/errors.go" + "github.com/lbryio/lbry.go/errors" qtools "github.com/lbryio/query.go" _ "github.com/go-sql-driver/mysql" diff --git a/peer/shared.go b/peer/shared.go index 9f1f99a..5d6937f 100644 --- a/peer/shared.go +++ b/peer/shared.go @@ -1,6 +1,6 @@ package peer -import "github.com/lbryio/errors.go" +import "github.com/lbryio/lbry.go/errors" const maxRequestSize = 64 * (2 ^ 10) // 64kb diff --git a/reflector/client.go b/reflector/client.go index fdec97f..ec40f86 100644 --- a/reflector/client.go +++ b/reflector/client.go @@ -5,7 +5,7 @@ import ( "net" "strconv" - "github.com/lbryio/errors.go" + "github.com/lbryio/lbry.go/errors" log "github.com/sirupsen/logrus" ) diff --git a/reflector/server.go b/reflector/server.go index 14b47ba..b8f49e8 100644 --- a/reflector/server.go +++ b/reflector/server.go @@ -9,7 +9,7 @@ import ( "github.com/lbryio/reflector.go/store" - "github.com/lbryio/errors.go" + "github.com/lbryio/lbry.go/errors" log "github.com/sirupsen/logrus" ) diff --git a/reflector/shared.go b/reflector/shared.go index 0072cb7..cee4855 100644 --- a/reflector/shared.go +++ b/reflector/shared.go @@ -4,7 +4,7 @@ import ( "crypto/sha512" "encoding/hex" - "github.com/lbryio/errors.go" + "github.com/lbryio/lbry.go/errors" ) const ( diff --git a/store/file.go b/store/file.go index 9036e89..dc37ac8 100644 --- a/store/file.go +++ b/store/file.go @@ -5,7 +5,7 @@ import ( "os" "path" - "github.com/lbryio/errors.go" + "github.com/lbryio/lbry.go/errors" ) type FileBlobStore struct { diff --git a/store/memory.go b/store/memory.go index de80e49..5a81dd4 100644 --- a/store/memory.go +++ b/store/memory.go @@ -1,6 +1,6 @@ package store -import "github.com/lbryio/errors.go" +import "github.com/lbryio/lbry.go/errors" type MemoryBlobStore struct { blobs map[string][]byte diff --git a/store/memory_test.go b/store/memory_test.go index 3502af7..c2bbfc6 100644 --- a/store/memory_test.go +++ b/store/memory_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/lbryio/errors.go" + "github.com/lbryio/lbry.go/errors" ) func TestMemoryBlobStore_Put(t *testing.T) { diff --git a/store/s3.go b/store/s3.go index aec5271..9332a53 100644 --- a/store/s3.go +++ b/store/s3.go @@ -5,7 +5,7 @@ import ( "net/http" "time" - "github.com/lbryio/errors.go" + "github.com/lbryio/lbry.go/errors" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/awserr" diff --git a/store/store.go b/store/store.go index 4912d0e..f9258bc 100644 --- a/store/store.go +++ b/store/store.go @@ -1,6 +1,6 @@ package store -import "github.com/lbryio/errors.go" +import "github.com/lbryio/lbry.go/errors" type BlobStore interface { Has(string) (bool, error)