mirror of
https://github.com/nitezs/sub2sing-box.git
synced 2024-12-23 15:04:41 -05:00
20 lines
431 B
Go
Executable File
20 lines
431 B
Go
Executable File
package model
|
|
|
|
type VmessJson struct {
|
|
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"`
|
|
}
|