mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-05-14 00:51:12 +03:00
14 lines
353 B
Go
14 lines
353 B
Go
package option
|
|
|
|
import "github.com/sagernet/sing/common/json/badoption"
|
|
|
|
type FailoverInboundOptions struct {
|
|
Inbounds []Inbound `json:"inbounds"`
|
|
}
|
|
|
|
type FailoverOutboundOptions struct {
|
|
Strategy string `json:"strategy,omitempty"`
|
|
Delay badoption.Duration `json:"delay,omitempty"`
|
|
Outbounds []Outbound `json:"outbounds"`
|
|
}
|