OpenVPNAdapter/Tests/VPNProfile.swift

20 lines
492 B
Swift
Raw Normal View History

//
// VPNProfile.swift
// OpenVPNAdapter
//
// Created by Sergey Abramchuk on 27/09/2018.
//
// Do not commit changes of this file to the repo!
import Foundation
struct VPNProfile {
2018-09-27 22:06:36 +08:00
static let username: String = <#OPENVPN_USERNAME#>
static let password: String = <#OPENVPN_PASSWORD#>
2018-09-27 22:06:36 +08:00
static let configuration: String = <#OPENVPN_CONFIGURATION#>
static let remoteHost: String = <#OPENVPN_REMOTE_HOST#>
static let remotePort: Int = <#OPENVPN_REMOTE_PORT#>
}