mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-03 20:07:36 +03:00
14 lines
379 B
Go
14 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"`
|
|
}
|