mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-05-08 14:33:23 +00:00
10 lines
185 B
Swift
10 lines
185 B
Swift
import Foundation
|
|
|
|
struct XrayConfig: Decodable {
|
|
let dns1: String?
|
|
let dns2: String?
|
|
let splitTunnelType: Int?
|
|
let splitTunnelSites: [String]?
|
|
let config: String
|
|
}
|