sing-box/option/experimental.go

12 lines
318 B
Go
Raw Normal View History

2022-07-19 14:16:49 +00:00
package option
type ExperimentalOptions struct {
ClashAPI *ClashAPIOptions `json:"clash_api,omitempty"`
}
type ClashAPIOptions struct {
ExternalController string `json:"external_controller,omitempty"`
2022-07-19 23:36:06 +00:00
ExternalUI string `json:"external_ui,omitempty"`
2022-07-19 14:16:49 +00:00
Secret string `json:"secret,omitempty"`
}