tun_platform.go 200 B

12345678910
  1. package option
  2. type TunPlatformOptions struct {
  3. HTTPProxy *HTTPProxyOptions `json:"http_proxy,omitempty"`
  4. }
  5. type HTTPProxyOptions struct {
  6. Enabled bool `json:"enabled,omitempty"`
  7. ServerOptions
  8. }