sing-box/option/tun_platform.go

11 lines
200 B
Go
Raw Normal View History

2023-02-28 11:02:27 +00:00
package option
type TunPlatformOptions struct {
HTTPProxy *HTTPProxyOptions `json:"http_proxy,omitempty"`
}
type HTTPProxyOptions struct {
Enabled bool `json:"enabled,omitempty"`
ServerOptions
}