VLESS Post-Quantum Encryption

This commit is contained in:
心隨緣動 2025-09-08 15:02:20 +08:00 committed by GitHub
parent 9dca3b3fe8
commit 661b006e02
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -115,3 +115,10 @@ type Client struct {
CreatedAt int64 `json:"created_at,omitempty"` CreatedAt int64 `json:"created_at,omitempty"`
UpdatedAt int64 `json:"updated_at,omitempty"` UpdatedAt int64 `json:"updated_at,omitempty"`
} }
type VLESSSettings struct {
Clients []Client `json:"clients"`
Decryption string `json:"decryption"`
Encryption string `json:"encryption"`
Fallbacks []any `json:"fallbacks"`
}