sing-box/common/settings/proxy_stub.go

15 lines
272 B
Go
Raw Normal View History

2022-08-04 22:01:20 +08:00
//go:build !(windows || linux || darwin)
package settings
2022-08-04 22:01:20 +08:00
import (
2023-09-03 14:29:37 +08:00
"context"
2022-08-04 22:01:20 +08:00
"os"
2023-09-03 14:29:37 +08:00
M "github.com/sagernet/sing/common/metadata"
2022-08-04 22:01:20 +08:00
)
2023-09-03 14:29:37 +08:00
func NewSystemProxy(ctx context.Context, serverAddr M.Socksaddr, supportSOCKS bool) (SystemProxy, error) {
2022-08-04 22:01:20 +08:00
return nil, os.ErrInvalid
}