sing-box/option/clash.go

14 lines
411 B
Go
Raw Normal View History

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