mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-25 10:01:30 +00:00
15 lines
379 B
Go
15 lines
379 B
Go
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"`
|
|
Domain []string `json:"domain,omitempty"`
|
|
Outbound string `json:"outbound,omitempty"`
|
|
}
|