17 lines
390 B
Swift
17 lines
390 B
Swift
//
|
|
// Tunnel+Extension.swift
|
|
// WireGuard
|
|
//
|
|
// Created by Jeroen Leenarts on 04-08-18.
|
|
// Copyright © 2018 Jason A. Donenfeld <Jason@zx2c4.com>. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension Tunnel {
|
|
public func generateProviderConfiguration() -> [String: Any] {
|
|
//TODO: generate ProviderConfiguration from tunnel with WireGuard config.
|
|
return [:]
|
|
}
|
|
}
|