sing-box/option/config.go

15 lines
392 B
Go
Raw Normal View History

2022-07-02 06:07:50 +00:00
package option
type Options struct {
2022-07-02 14:55:10 +00:00
Log *LogOption `json:"log"`
Inbounds []Inbound `json:"inbounds,omitempty"`
Outbounds []Outbound `json:"outbounds,omitempty"`
Route *RouteOptions `json:"route,omitempty"`
2022-07-02 06:07:50 +00:00
}
type LogOption struct {
Disabled bool `json:"disabled,omitempty"`
Level string `json:"level,omitempty"`
Output string `json:"output,omitempty"`
}