mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 11:03:13 +00:00
14 lines
242 B
Go
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
|
|
}
|