diff --git a/cmd/server/main.go b/cmd/server/main.go index d92d7b6..f105667 100644 --- a/cmd/server/main.go +++ b/cmd/server/main.go @@ -10,11 +10,11 @@ import ( "time" "module git.kingecg.top/kingecg/gotidb/pkg/api" - "git.pyer.club/kingecg/gotidb/pkg/manager" - "git.pyer.club/kingecg/gotidb/pkg/messaging" - "git.pyer.club/kingecg/gotidb/pkg/model" - "git.pyer.club/kingecg/gotidb/pkg/monitoring" - "git.pyer.club/kingecg/gotidb/pkg/storage" + "git.kingecg.top/kingecg/gotidb/pkg/manager" + "git.kingecg.top/kingecg/gotidb/pkg/messaging" + "git.kingecg.top/kingecg/gotidb/pkg/model" + "git.kingecg.top/kingecg/gotidb/pkg/monitoring" + "git.kingecg.top/kingecg/gotidb/pkg/storage" ) var ( diff --git a/pkg/api/quic_server.go b/pkg/api/quic_server.go index e3e8117..092f2f8 100644 --- a/pkg/api/quic_server.go +++ b/pkg/api/quic_server.go @@ -14,7 +14,7 @@ import ( "time" "module git.kingecg.top/kingecg/gotidb/pkg/manager" - "git.pyer.club/kingecg/gotidb/pkg/model" + "git.kingecg.top/kingecg/gotidb/pkg/model" "github.com/quic-go/quic-go" ) diff --git a/pkg/api/rest.go b/pkg/api/rest.go index d7ad840..98b7220 100644 --- a/pkg/api/rest.go +++ b/pkg/api/rest.go @@ -8,7 +8,7 @@ import ( "github.com/gin-gonic/gin" "module git.kingecg.top/kingecg/gotidb/pkg/manager" - "git.pyer.club/kingecg/gotidb/pkg/model" + "git.kingecg.top/kingecg/gotidb/pkg/model" ) // RESTServer REST API服务 diff --git a/pkg/api/rest_test.go b/pkg/api/rest_test.go index fdfc4d1..e68e39b 100644 --- a/pkg/api/rest_test.go +++ b/pkg/api/rest_test.go @@ -12,8 +12,8 @@ import ( "github.com/gin-gonic/gin" "module git.kingecg.top/kingecg/gotidb/pkg/manager" - "git.pyer.club/kingecg/gotidb/pkg/model" - "git.pyer.club/kingecg/gotidb/pkg/storage" + "git.kingecg.top/kingecg/gotidb/pkg/model" + "git.kingecg.top/kingecg/gotidb/pkg/storage" ) func setupTestRESTServer() *RESTServer { diff --git a/pkg/api/websocket.go b/pkg/api/websocket.go index 1d3d871..04d4098 100644 --- a/pkg/api/websocket.go +++ b/pkg/api/websocket.go @@ -12,7 +12,7 @@ import ( "github.com/gorilla/websocket" "module git.kingecg.top/kingecg/gotidb/pkg/manager" - "git.pyer.club/kingecg/gotidb/pkg/model" + "git.kingecg.top/kingecg/gotidb/pkg/model" ) // WebSocketServer WebSocket服务 diff --git a/pkg/api/websocket_test.go b/pkg/api/websocket_test.go index 8ce9ed5..95b2b55 100644 --- a/pkg/api/websocket_test.go +++ b/pkg/api/websocket_test.go @@ -12,8 +12,8 @@ import ( "github.com/gorilla/websocket" "module git.kingecg.top/kingecg/gotidb/pkg/manager" - "git.pyer.club/kingecg/gotidb/pkg/model" - "git.pyer.club/kingecg/gotidb/pkg/storage" + "git.kingecg.top/kingecg/gotidb/pkg/model" + "git.kingecg.top/kingecg/gotidb/pkg/storage" ) func setupTestWebSocketServer() *WebSocketServer { diff --git a/pkg/manager/datamanager.go b/pkg/manager/datamanager.go index 4054782..d2d9935 100644 --- a/pkg/manager/datamanager.go +++ b/pkg/manager/datamanager.go @@ -7,7 +7,7 @@ import ( "time" "module git.kingecg.top/kingecg/gotidb/pkg/model" - "git.pyer.club/kingecg/gotidb/pkg/storage" + "git.kingecg.top/kingecg/gotidb/pkg/storage" ) // DataChangeCallback 数据变更回调函数类型 diff --git a/pkg/manager/datamanager_test.go b/pkg/manager/datamanager_test.go index a8cc7c3..c127c40 100644 --- a/pkg/manager/datamanager_test.go +++ b/pkg/manager/datamanager_test.go @@ -6,7 +6,7 @@ import ( "time" "module git.kingecg.top/kingecg/gotidb/pkg/model" - "git.pyer.club/kingecg/gotidb/pkg/storage" + "git.kingecg.top/kingecg/gotidb/pkg/storage" ) func TestDataManager(t *testing.T) {