返回 DeepSeek-Reasonix
system_other.go
根目录 / internal / sysproxy / system_other.go
1 //go:build !windows
2
3 package sysproxy
4
5 import "net/url"
6
7 // ForURL has no OS proxy source outside Windows; env/direct handling stays with
8 // the caller. The unused list/bypass helpers keep one cross-platform file.
9 func ForURL(*url.URL) (*url.URL, error) {
10 _ = parseProxyList
11 _ = bypassed
12 return nil, nil
13 }
14
14 lines GO