clash.go 352 B

123456789101112
  1. package option
  2. type ClashAPIOptions struct {
  3. ExternalController string `json:"external_controller,omitempty"`
  4. ExternalUI string `json:"external_ui,omitempty"`
  5. Secret string `json:"secret,omitempty"`
  6. }
  7. type SelectorOutboundOptions struct {
  8. Outbounds []string `json:"outbounds"`
  9. Default string `json:"default,omitempty"`
  10. }