mirror of
https://github.com/deneraraujo/OpenVPNAdapter.git
synced 2026-02-22 00:00:06 +08:00
19 lines
354 B
Swift
19 lines
354 B
Swift
//
|
|
// 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 {
|
|
static let username = "OPENVPN_USERNAME"
|
|
static let password = "OPENVPN_PASSWORD"
|
|
|
|
static let configuration = """
|
|
OPENVPN_CONFIGURATION
|
|
"""
|
|
}
|