mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 11:03:13 +00:00
11 lines
200 B
Go
11 lines
200 B
Go
|
package option
|
||
|
|
||
|
type TunPlatformOptions struct {
|
||
|
HTTPProxy *HTTPProxyOptions `json:"http_proxy,omitempty"`
|
||
|
}
|
||
|
|
||
|
type HTTPProxyOptions struct {
|
||
|
Enabled bool `json:"enabled,omitempty"`
|
||
|
ServerOptions
|
||
|
}
|