Add VPN profile template and corresponding target file

This commit is contained in:
Sergey Abramchuk
2018-09-27 13:48:30 +03:00
parent 5c70534069
commit cf52aaca00
3 changed files with 44 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
//
// 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 %>
"""
}