12345678910111213 |
- 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"`
- }
|