mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-09 18:43:14 +00:00
15 lines
272 B
Go
15 lines
272 B
Go
//go:build !(windows || linux || darwin)
|
|
|
|
package settings
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
|
|
M "github.com/sagernet/sing/common/metadata"
|
|
)
|
|
|
|
func NewSystemProxy(ctx context.Context, serverAddr M.Socksaddr, supportSOCKS bool) (SystemProxy, error) {
|
|
return nil, os.ErrInvalid
|
|
}
|