mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 11:03:13 +00:00
14 lines
398 B
Go
14 lines
398 B
Go
package option
|
|
|
|
type V2RayAPIOptions struct {
|
|
Listen string `json:"listen,omitempty"`
|
|
Stats *V2RayStatsServiceOptions `json:"stats,omitempty"`
|
|
}
|
|
|
|
type V2RayStatsServiceOptions struct {
|
|
Enabled bool `json:"enabled,omitempty"`
|
|
Inbounds []string `json:"inbounds,omitempty"`
|
|
Outbounds []string `json:"outbounds,omitempty"`
|
|
Users []string `json:"users,omitempty"`
|
|
}
|