mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-06 05:17:37 +03:00
13 lines
189 B
Go
13 lines
189 B
Go
//go:build !windows
|
|
|
|
package wininet
|
|
|
|
import "os"
|
|
|
|
func ClearSystemProxy() error {
|
|
return os.ErrInvalid
|
|
}
|
|
|
|
func SetSystemProxy(proxy string, bypass string) error {
|
|
return os.ErrInvalid
|
|
}
|