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