mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-06-26 20:29:03 +03:00
11 lines
186 B
Go
11 lines
186 B
Go
package v2raygrpclite
|
|
|
|
import "strings"
|
|
|
|
func grpcPath(serviceName string) string {
|
|
if strings.Contains(serviceName, "/") {
|
|
return serviceName
|
|
}
|
|
return "/" + serviceName + "/Tun"
|
|
}
|