From 5998909d58d4a0c2d776dd891d6f95870319ebbd Mon Sep 17 00:00:00 2001 From: kingecg Date: Thu, 26 Jun 2025 00:50:36 +0800 Subject: [PATCH] chore: update module path to git.kingecg.top --- config/config.go | 2 +- go.mod | 2 +- go.sum | 2 +- main.go | 2 +- network/server.go | 2 +- network/server_test.go | 2 +- protocol/parser_test.go | 2 +- query/handler.go | 2 +- storage/engine.go | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/config/config.go b/config/config.go index 57d7cee..21fddce 100644 --- a/config/config.go +++ b/config/config.go @@ -10,7 +10,7 @@ import ( "encoding/json" - "module git.kingecg.top/kingecg/gologger" + "git.kingecg.top/kingecg/gologger" "github.com/fsnotify/fsnotify" "gopkg.in/yaml.v2" ) diff --git a/go.mod b/go.mod index 799d574..a55cdbd 100644 --- a/go.mod +++ b/go.mod @@ -7,7 +7,7 @@ go 1.23 // require github.com/mongodb/mongo-go-driver/v2 v2.0.0 require ( - module git.kingecg.top/kingecg/gologger v1.0.9 + git.kingecg.top/kingecg/gologger v1.0.9 github.com/fsnotify/fsnotify v1.9.0 github.com/stretchr/testify v1.10.0 go.mongodb.org/mongo-driver v1.17.4 diff --git a/go.sum b/go.sum index f934ce5..e0c8be2 100644 --- a/go.sum +++ b/go.sum @@ -1,4 +1,4 @@ -module git.kingecg.top/kingecg/gologger v1.0.9 h1:DWQBtbl0o0U3Kk0/vOdreUwv3IbFGSrFAcZWCDlHI8I= +git.kingecg.top/kingecg/gologger v1.0.9 h1:DWQBtbl0o0U3Kk0/vOdreUwv3IbFGSrFAcZWCDlHI8I= 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= diff --git a/main.go b/main.go index 9189d36..cea0b71 100644 --- a/main.go +++ b/main.go @@ -9,7 +9,7 @@ import ( "syscall" - "module git.kingecg.top/kingecg/goaidb/config" + "git.kingecg.top/kingecg/goaidb/config" "git.kingecg.top/kingecg/goaidb/log" "git.kingecg.top/kingecg/goaidb/network" "git.kingecg.top/kingecg/goaidb/storage" diff --git a/network/server.go b/network/server.go index 12463ab..e5c559e 100644 --- a/network/server.go +++ b/network/server.go @@ -6,7 +6,7 @@ import ( "io" "net" - "module git.kingecg.top/kingecg/goaidb/log" + "git.kingecg.top/kingecg/goaidb/log" "git.kingecg.top/kingecg/goaidb/protocol" "git.kingecg.top/kingecg/goaidb/storage" ) diff --git a/network/server_test.go b/network/server_test.go index 5058955..e8f1bbe 100644 --- a/network/server_test.go +++ b/network/server_test.go @@ -7,7 +7,7 @@ import ( "testing" "time" - "module git.kingecg.top/kingecg/goaidb/protocol" + "git.kingecg.top/kingecg/goaidb/protocol" "github.com/stretchr/testify/assert" ) diff --git a/protocol/parser_test.go b/protocol/parser_test.go index a93a4e4..1343412 100644 --- a/protocol/parser_test.go +++ b/protocol/parser_test.go @@ -3,7 +3,7 @@ package protocol import ( "testing" - "module git.kingecg.top/kingecg/goaidb/log" + "git.kingecg.top/kingecg/goaidb/log" ) func TestParseQuery(t *testing.T) { diff --git a/query/handler.go b/query/handler.go index 60e2ba6..7383f1a 100644 --- a/query/handler.go +++ b/query/handler.go @@ -4,7 +4,7 @@ package query import ( "fmt" - "module git.kingecg.top/kingecg/goaidb/protocol" + "git.kingecg.top/kingecg/goaidb/protocol" "git.kingecg.top/kingecg/goaidb/storage" ) diff --git a/storage/engine.go b/storage/engine.go index b9169b2..b0d8573 100644 --- a/storage/engine.go +++ b/storage/engine.go @@ -3,7 +3,7 @@ package storage import ( "fmt" - "module git.kingecg.top/kingecg/goaidb/log" + "git.kingecg.top/kingecg/goaidb/log" "git.kingecg.top/kingecg/goaidb/protocol" "encoding/binary" )