chore: update module path to git.kingecg.top

This commit is contained in:
kingecg 2025-06-25 23:36:46 +08:00
parent 603c654746
commit f9b3c5c906
5 changed files with 8 additions and 8 deletions

2
go.sum
View File

@ -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=

View File

@ -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 {

View File

@ -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 网络服务器结构体

View File

@ -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 处理查询请求

View File

@ -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"
)