sing-box/option/v2ray.go

14 lines
398 B
Go
Raw Normal View History

2022-09-26 11:37:06 +00:00
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"`
2023-02-08 08:50:15 +00:00
Users []string `json:"users,omitempty"`
2022-09-26 11:37:06 +00:00
}