feat: add router handler & connector

This commit is contained in:
ginuerzh
2025-02-07 15:51:51 +08:00
parent 982a93eee4
commit f66fce9d49
4 changed files with 9 additions and 7 deletions
+2
View File
@@ -7,6 +7,7 @@ import (
_ "github.com/go-gost/x/connector/http"
_ "github.com/go-gost/x/connector/http2"
_ "github.com/go-gost/x/connector/relay"
_ "github.com/go-gost/x/connector/router"
_ "github.com/go-gost/x/connector/serial"
_ "github.com/go-gost/x/connector/sni"
_ "github.com/go-gost/x/connector/socks/v4"
@@ -59,6 +60,7 @@ import (
_ "github.com/go-gost/x/handler/redirect/tcp"
_ "github.com/go-gost/x/handler/redirect/udp"
_ "github.com/go-gost/x/handler/relay"
_ "github.com/go-gost/x/handler/router"
_ "github.com/go-gost/x/handler/serial"
_ "github.com/go-gost/x/handler/sni"
_ "github.com/go-gost/x/handler/socks/v4"
+1 -1
View File
@@ -1,5 +1,5 @@
package main
var (
version = "3.0.0"
version = "3.1.0"
)