mirror of
https://github.com/passepartoutvpn/wireguard-apple.git
synced 2025-01-09 10:09:06 +00:00
19 lines
436 B
Swift
19 lines
436 B
Swift
//
|
|
// Copyright © 2018 WireGuard LLC. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
import PromiseKit
|
|
import NetworkExtension
|
|
|
|
enum GoVersionCoordinatorError: Error {
|
|
case noEnabledSession
|
|
case noResponse
|
|
}
|
|
|
|
extension AppCoordinator: SettingsTableViewControllerDelegate {
|
|
func exportTunnels(settingsTableViewController: SettingsTableViewController, sourceView: UIView) {
|
|
self.exportConfigs(sourceView: sourceView)
|
|
}
|
|
}
|