sing-box/config/route.go

15 lines
379 B
Go
Raw Normal View History

2022-06-30 13:27:56 +00:00
package config
type Route struct {
Type string `json:"type"`
}
type SimpleRule struct {
Inbound []string `json:"inbound,omitempty"`
IPVersion []int `json:"ip_version,omitempty"`
Network []string `json:"network,omitempty"`
Protocol []string `json:"protocol,omitempty"`
2022-07-01 11:34:02 +00:00
Domain []string `json:"domain,omitempty"`
2022-06-30 13:27:56 +00:00
Outbound string `json:"outbound,omitempty"`
}