sing-box/option/tun_platform.go
2023-02-28 19:02:27 +08:00

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
}