sing-box/common/settings/proxy_stub.go
2022-08-05 16:55:59 +08:00

14 lines
242 B
Go

//go:build !(windows || linux || darwin)
package settings
import (
"os"
"github.com/sagernet/sing-box/adapter"
)
func SetSystemProxy(router adapter.Router, port uint16, isMixed bool) (func() error, error) {
return nil, os.ErrInvalid
}