mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-02-17 23:04:38 +00:00
13 lines
289 B
Go
13 lines
289 B
Go
package config
|
|
|
|
type Config struct {
|
|
Log *LogConfig `json:"log"`
|
|
Inbounds []Inbound `json:"inbounds,omitempty"`
|
|
Outbounds []Outbound `json:"outbounds,omitempty"`
|
|
Routes []Route `json:"routes,omitempty"`
|
|
}
|
|
|
|
type LogConfig struct {
|
|
Level string `json:"level,omitempty"`
|
|
}
|