sing-box/option/experimental.go
2022-07-19 22:45:55 +08:00

11 lines
260 B
Go

package option
type ExperimentalOptions struct {
ClashAPI *ClashAPIOptions `json:"clash_api,omitempty"`
}
type ClashAPIOptions struct {
ExternalController string `json:"external_controller,omitempty"`
Secret string `json:"secret,omitempty"`
}