Files
OpenVPNAdapter/Scripts/vpn_profile_template.erb
2018-09-27 16:41:22 +03:00

21 lines
412 B
Plaintext

//
// 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.each_line do |line| %>
<%= line %>
<% end %>
"""
}