Fix open log crash and side log improvements (#694)

Fix open log crash
This commit is contained in:
isamnezia
2024-03-20 18:35:36 +03:00
committed by GitHub
parent 0e83586cae
commit 516e3da7e2
9 changed files with 430 additions and 371 deletions
-11
View File
@@ -89,14 +89,3 @@ struct WGConfig: Decodable {
"""
}
}
struct OpenVPNConfig: Decodable {
let config: String
let mtu: String
let splitTunnelType: Int
let splitTunnelSites: [String]
var str: String {
"splitTunnelType: \(splitTunnelType) splitTunnelSites: \(splitTunnelSites) mtu: \(mtu) config: \(config)"
}
}