2024-03-11 03:13:42 +08:00
|
|
|
package model
|
|
|
|
|
|
|
|
type VmessJson struct {
|
2024-08-05 01:53:16 +08:00
|
|
|
V string `json:"v"`
|
|
|
|
Ps string `json:"ps"`
|
|
|
|
Add string `json:"add"`
|
|
|
|
Port any `json:"port"`
|
|
|
|
Id string `json:"id"`
|
|
|
|
Aid any `json:"aid"`
|
|
|
|
Scy string `json:"scy"`
|
|
|
|
Net string `json:"net"`
|
|
|
|
Type string `json:"type"`
|
|
|
|
Host string `json:"host"`
|
|
|
|
Path string `json:"path"`
|
|
|
|
Tls string `json:"tls"`
|
|
|
|
Sni string `json:"sni"`
|
|
|
|
Alpn string `json:"alpn"`
|
|
|
|
Fp string `json:"fp"`
|
2024-03-11 03:13:42 +08:00
|
|
|
}
|