chore: update module path to git.kingecg.top

This commit is contained in:
kingecg 2025-06-26 00:50:36 +08:00
parent f9b3c5c906
commit 5998909d58
9 changed files with 9 additions and 9 deletions

View File

@ -10,7 +10,7 @@ import (
"encoding/json" "encoding/json"
"module git.kingecg.top/kingecg/gologger" "git.kingecg.top/kingecg/gologger"
"github.com/fsnotify/fsnotify" "github.com/fsnotify/fsnotify"
"gopkg.in/yaml.v2" "gopkg.in/yaml.v2"
) )

2
go.mod
View File

@ -7,7 +7,7 @@ go 1.23
// require github.com/mongodb/mongo-go-driver/v2 v2.0.0 // require github.com/mongodb/mongo-go-driver/v2 v2.0.0
require ( 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/fsnotify/fsnotify v1.9.0
github.com/stretchr/testify v1.10.0 github.com/stretchr/testify v1.10.0
go.mongodb.org/mongo-driver v1.17.4 go.mongodb.org/mongo-driver v1.17.4

2
go.sum
View File

@ -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= 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 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=

View File

@ -9,7 +9,7 @@ import (
"syscall" "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/log"
"git.kingecg.top/kingecg/goaidb/network" "git.kingecg.top/kingecg/goaidb/network"
"git.kingecg.top/kingecg/goaidb/storage" "git.kingecg.top/kingecg/goaidb/storage"

View File

@ -6,7 +6,7 @@ import (
"io" "io"
"net" "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/protocol"
"git.kingecg.top/kingecg/goaidb/storage" "git.kingecg.top/kingecg/goaidb/storage"
) )

View File

@ -7,7 +7,7 @@ import (
"testing" "testing"
"time" "time"
"module git.kingecg.top/kingecg/goaidb/protocol" "git.kingecg.top/kingecg/goaidb/protocol"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
) )

View File

@ -3,7 +3,7 @@ package protocol
import ( import (
"testing" "testing"
"module git.kingecg.top/kingecg/goaidb/log" "git.kingecg.top/kingecg/goaidb/log"
) )
func TestParseQuery(t *testing.T) { func TestParseQuery(t *testing.T) {

View File

@ -4,7 +4,7 @@ package query
import ( import (
"fmt" "fmt"
"module git.kingecg.top/kingecg/goaidb/protocol" "git.kingecg.top/kingecg/goaidb/protocol"
"git.kingecg.top/kingecg/goaidb/storage" "git.kingecg.top/kingecg/goaidb/storage"
) )

View File

@ -3,7 +3,7 @@ package storage
import ( import (
"fmt" "fmt"
"module git.kingecg.top/kingecg/goaidb/log" "git.kingecg.top/kingecg/goaidb/log"
"git.kingecg.top/kingecg/goaidb/protocol" "git.kingecg.top/kingecg/goaidb/protocol"
"encoding/binary" "encoding/binary"
) )