diff --git a/api/collection.go b/api/collection.go index c0fce80..33be51a 100644 --- a/api/collection.go +++ b/api/collection.go @@ -4,7 +4,7 @@ import ( "fmt" "sync" - "git.pyer.club/kingecg/godocdb/document" + "module git.kingecg.top/kingecg/godocdb/document" "git.pyer.club/kingecg/godocdb/index" // "fmt" "go.mongodb.org/mongo-driver/bson/primitive" ) diff --git a/api/index.go b/api/index.go index 981796c..f75027c 100644 --- a/api/index.go +++ b/api/index.go @@ -1,6 +1,6 @@ package api -import "git.pyer.club/kingecg/godocdb/index" +import "module git.kingecg.top/kingecg/godocdb/index" type Index struct { metadata index.IndexMetadata diff --git a/coverage.out b/coverage.out index 74ef685..9fe0524 100644 --- a/coverage.out +++ b/coverage.out @@ -1,5 +1,5 @@ mode: set -git.pyer.club/kingecg/godocdb/index/index.go:32.54,34.16 2 1 +module git.kingecg.top/kingecg/godocdb/index/index.go:32.54,34.16 2 1 git.pyer.club/kingecg/godocdb/index/index.go:34.16,36.3 1 0 git.pyer.club/kingecg/godocdb/index/index.go:37.2,37.43 1 1 git.pyer.club/kingecg/godocdb/index/index.go:41.100,50.16 3 1 diff --git a/document/document.go b/document/document.go index dfae601..4eb9992 100644 --- a/document/document.go +++ b/document/document.go @@ -5,7 +5,7 @@ import ( "strings" "sync" - "git.pyer.club/kingecg/godocdb/index" + "module git.kingecg.top/kingecg/godocdb/index" "git.pyer.club/kingecg/godocdb/storage" "go.mongodb.org/mongo-driver/bson" "go.mongodb.org/mongo-driver/bson/primitive" diff --git a/document/document_test.go b/document/document_test.go index fee3210..a653bcc 100644 --- a/document/document_test.go +++ b/document/document_test.go @@ -7,7 +7,7 @@ import ( "sync" "testing" - "git.pyer.club/kingecg/godocdb/storage" + "module git.kingecg.top/kingecg/godocdb/storage" "git.pyer.club/kingecg/godocdb/utils" ) diff --git a/index/index.go b/index/index.go index 0172037..33fcd76 100644 --- a/index/index.go +++ b/index/index.go @@ -6,7 +6,7 @@ import ( "strings" "sync" - "git.pyer.club/kingecg/godocdb/storage" + "module git.kingecg.top/kingecg/godocdb/storage" "go.mongodb.org/mongo-driver/bson" ) diff --git a/storage/leveldb.go b/storage/leveldb.go index fb34f6b..d95647c 100644 --- a/storage/leveldb.go +++ b/storage/leveldb.go @@ -5,7 +5,7 @@ import ( "strconv" "strings" - "git.pyer.club/kingecg/godocdb/utils" + "module git.kingecg.top/kingecg/godocdb/utils" "github.com/syndtr/goleveldb/leveldb" )