mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-05-14 00:51:12 +03:00
17 lines
376 B
Go
17 lines
376 B
Go
package option
|
|
|
|
type BondInboundOptions struct {
|
|
Inbounds []Inbound `json:"inbounds"`
|
|
}
|
|
|
|
type BondOutboundOptions struct {
|
|
Outbounds []BondOutbound `json:"outbounds"`
|
|
}
|
|
|
|
type BondOutbound struct {
|
|
Outbound Outbound `json:"outbound"`
|
|
DownloadRatio uint8 `json:"download_ratio"`
|
|
UploadRatio uint8 `json:"upload_ratio"`
|
|
Count uint8 `json:"count"`
|
|
}
|