diff --git a/go.sum b/go.sum index 1072997..f934ce5 100644 --- a/go.sum +++ b/go.sum @@ -1,5 +1,5 @@ module git.kingecg.top/kingecg/gologger v1.0.9 h1:DWQBtbl0o0U3Kk0/vOdreUwv3IbFGSrFAcZWCDlHI8I= -git.pyer.club/kingecg/gologger v1.0.9/go.mod h1:SNSl2jRHPzIpHSzdKOoVG798rtYMjPDPFyxUrEgivkY= +git.kingecg.top/kingecg/gologger v1.0.9/go.mod h1:SNSl2jRHPzIpHSzdKOoVG798rtYMjPDPFyxUrEgivkY= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/fsnotify/fsnotify v1.9.0 h1:2Ml+OJNzbYCTzsxtv8vKSFD9PbJjmhYF14k/jKC7S9k= diff --git a/main.go b/main.go index b69db13..9189d36 100644 --- a/main.go +++ b/main.go @@ -10,9 +10,9 @@ import ( "syscall" "module git.kingecg.top/kingecg/goaidb/config" - "git.pyer.club/kingecg/goaidb/log" - "git.pyer.club/kingecg/goaidb/network" - "git.pyer.club/kingecg/goaidb/storage" + "git.kingecg.top/kingecg/goaidb/log" + "git.kingecg.top/kingecg/goaidb/network" + "git.kingecg.top/kingecg/goaidb/storage" ) func getExeDir() string { diff --git a/network/server.go b/network/server.go index cdc6cdc..12463ab 100644 --- a/network/server.go +++ b/network/server.go @@ -7,8 +7,8 @@ import ( "net" "module git.kingecg.top/kingecg/goaidb/log" - "git.pyer.club/kingecg/goaidb/protocol" - "git.pyer.club/kingecg/goaidb/storage" + "git.kingecg.top/kingecg/goaidb/protocol" + "git.kingecg.top/kingecg/goaidb/storage" ) // Server 网络服务器结构体 diff --git a/query/handler.go b/query/handler.go index 4a7f85d..60e2ba6 100644 --- a/query/handler.go +++ b/query/handler.go @@ -5,7 +5,7 @@ import ( "fmt" "module git.kingecg.top/kingecg/goaidb/protocol" - "git.pyer.club/kingecg/goaidb/storage" + "git.kingecg.top/kingecg/goaidb/storage" ) // HandleQuery 处理查询请求 diff --git a/storage/engine.go b/storage/engine.go index a0d6321..b9169b2 100644 --- a/storage/engine.go +++ b/storage/engine.go @@ -4,7 +4,7 @@ package storage import ( "fmt" "module git.kingecg.top/kingecg/goaidb/log" - "git.pyer.club/kingecg/goaidb/protocol" + "git.kingecg.top/kingecg/goaidb/protocol" "encoding/binary" )