From 5124b1c66fda5b7873b17dc662ab1acaf39f06a9 Mon Sep 17 00:00:00 2001 From: kingecg Date: Wed, 25 Jun 2025 23:02:12 +0800 Subject: [PATCH] chore: update module path to git.kingecg.top --- client/dataconn.go | 2 +- client/main.go | 2 +- go.mod | 2 +- go.sum | 2 +- server/handleAgent.go | 2 +- server/handleClient.go | 2 +- server/handlePipe.go | 2 +- server/main.go | 2 +- server/session.go | 2 +- tunnelagent/main.go | 2 +- tunnelclient/main.go | 2 +- tunnelserver/main.go | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/client/dataconn.go b/client/dataconn.go index e041e2a..6c54ac4 100644 --- a/client/dataconn.go +++ b/client/dataconn.go @@ -9,7 +9,7 @@ import ( "strconv" "sync" - "git.pyer.club/kingecg/goemitter" + "module git.kingecg.top/kingecg/goemitter" "git.pyer.club/kingecg/gotunnelserver/util" ws "github.com/gorilla/websocket" ) diff --git a/client/main.go b/client/main.go index a899025..9f0b902 100644 --- a/client/main.go +++ b/client/main.go @@ -6,7 +6,7 @@ import ( "log" "time" - "git.pyer.club/kingecg/goemitter" + "module git.kingecg.top/kingecg/goemitter" "git.pyer.club/kingecg/gotunnelserver/server" "git.pyer.club/kingecg/gotunnelserver/util" ws "github.com/gorilla/websocket" diff --git a/go.mod b/go.mod index b05e4a3..9a24266 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module git.pyer.club/kingecg/gotunnelserver +module module git.kingecg.top/kingecg/gotunnelserver go 1.23.1 diff --git a/go.sum b/go.sum index 261e36e..9ddd6b3 100644 --- a/go.sum +++ b/go.sum @@ -1,4 +1,4 @@ -git.pyer.club/kingecg/command v0.0.0-20241024110012-525a2ad9662d h1:CIcY8L5FcGy1uO+GvdMeidjdfYSxwTEEEvt3WXBOQAU= +module git.kingecg.top/kingecg/command v0.0.0-20241024110012-525a2ad9662d h1:CIcY8L5FcGy1uO+GvdMeidjdfYSxwTEEEvt3WXBOQAU= git.pyer.club/kingecg/command v0.0.0-20241024110012-525a2ad9662d/go.mod h1:lnSzW19xOIlUwlewxHH0R4SIDO+a4++USjmMjo/jZB0= git.pyer.club/kingecg/command v0.0.0-20241115051719-6fd5111300dc h1:PVvfibld+xRlWIbBlprF0AaIuTpF5QeY3CqthCQP8lg= git.pyer.club/kingecg/command v0.0.0-20241115051719-6fd5111300dc/go.mod h1:7j+/UU5URp7UkTbNtYDvZY3cFywuTRys1TmP3HbNX3A= diff --git a/server/handleAgent.go b/server/handleAgent.go index 5714743..c99fe3b 100644 --- a/server/handleAgent.go +++ b/server/handleAgent.go @@ -3,7 +3,7 @@ package server import ( "net/http" - "git.pyer.club/kingecg/gotunnelserver/util" + "module git.kingecg.top/kingecg/gotunnelserver/util" "github.com/gorilla/websocket" ) diff --git a/server/handleClient.go b/server/handleClient.go index 33b2c11..9cf3e2f 100644 --- a/server/handleClient.go +++ b/server/handleClient.go @@ -3,7 +3,7 @@ package server import ( "net/http" - "git.pyer.club/kingecg/gotunnelserver/util" + "module git.kingecg.top/kingecg/gotunnelserver/util" "github.com/gorilla/websocket" ) diff --git a/server/handlePipe.go b/server/handlePipe.go index 1103168..6081df5 100644 --- a/server/handlePipe.go +++ b/server/handlePipe.go @@ -3,7 +3,7 @@ package server import ( "net/http" - "git.pyer.club/kingecg/goemitter" + "module git.kingecg.top/kingecg/goemitter" "git.pyer.club/kingecg/gologger" "git.pyer.club/kingecg/gotunnelserver/util" "github.com/gorilla/websocket" diff --git a/server/main.go b/server/main.go index 3f236c8..1cb5e5f 100644 --- a/server/main.go +++ b/server/main.go @@ -10,7 +10,7 @@ import ( "net/http" - "git.pyer.club/kingecg/gologger" + "module git.kingecg.top/kingecg/gologger" "git.pyer.club/kingecg/gotunnelserver/util" "github.com/gorilla/websocket" ) diff --git a/server/session.go b/server/session.go index 61a59a8..46cc423 100644 --- a/server/session.go +++ b/server/session.go @@ -4,7 +4,7 @@ import ( "context" "encoding/json" - "git.pyer.club/kingecg/goemitter" + "module git.kingecg.top/kingecg/goemitter" "git.pyer.club/kingecg/gotunnelserver/util" "github.com/gorilla/websocket" ) diff --git a/tunnelagent/main.go b/tunnelagent/main.go index 7bc755d..acbfdec 100644 --- a/tunnelagent/main.go +++ b/tunnelagent/main.go @@ -5,7 +5,7 @@ import ( "os" "strconv" - "git.pyer.club/kingecg/command" + "module git.kingecg.top/kingecg/command" "git.pyer.club/kingecg/gotunnelserver/client" "git.pyer.club/kingecg/gotunnelserver/util" ) diff --git a/tunnelclient/main.go b/tunnelclient/main.go index 379efc1..afa6743 100644 --- a/tunnelclient/main.go +++ b/tunnelclient/main.go @@ -5,7 +5,7 @@ import ( "os" "strconv" - "git.pyer.club/kingecg/command" + "module git.kingecg.top/kingecg/command" "git.pyer.club/kingecg/gotunnelserver/client" "git.pyer.club/kingecg/gotunnelserver/server" "git.pyer.club/kingecg/gotunnelserver/util" diff --git a/tunnelserver/main.go b/tunnelserver/main.go index 7f0ac80..c7ba97c 100644 --- a/tunnelserver/main.go +++ b/tunnelserver/main.go @@ -1,7 +1,7 @@ package main import ( - "git.pyer.club/kingecg/gotunnelserver/server" + "module git.kingecg.top/kingecg/gotunnelserver/server" ) func main() {