Add shadowsocks tests

This commit is contained in:
世界
2022-07-09 08:59:34 +08:00
parent f448b6b977
commit 7f8c9ffa30
10 changed files with 1063 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
//go:build !darwin
package main
import (
"errors"
"net/netip"
)
func defaultRouteIP() (netip.Addr, error) {
return netip.Addr{}, errors.New("not supported")
}