2022-07-25 03:29:46 +00:00
|
|
|
package option
|
|
|
|
|
|
|
|
type ClashAPIOptions struct {
|
|
|
|
ExternalController string `json:"external_controller,omitempty"`
|
|
|
|
ExternalUI string `json:"external_ui,omitempty"`
|
|
|
|
Secret string `json:"secret,omitempty"`
|
2022-09-10 06:40:16 +00:00
|
|
|
|
|
|
|
DefaultMode string `json:"default_mode,omitempty"`
|
|
|
|
StoreSelected bool `json:"store_selected,omitempty"`
|
|
|
|
CacheFile string `json:"cache_file,omitempty"`
|
2022-07-25 03:29:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type SelectorOutboundOptions struct {
|
|
|
|
Outbounds []string `json:"outbounds"`
|
|
|
|
Default string `json:"default,omitempty"`
|
|
|
|
}
|