2018-09-26 09:21:53 +00:00
|
|
|
//
|
|
|
|
// Copyright © 2018 WireGuard LLC. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import UIKit
|
|
|
|
import PromiseKit
|
|
|
|
import NetworkExtension
|
|
|
|
|
|
|
|
enum GoVersionCoordinatorError: Error {
|
2018-10-01 13:37:15 +00:00
|
|
|
case noEnabledSession
|
|
|
|
case noResponse
|
2018-09-26 09:21:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
extension AppCoordinator: SettingsTableViewControllerDelegate {
|
|
|
|
func exportTunnels(settingsTableViewController: SettingsTableViewController, sourceView: UIView) {
|
|
|
|
self.exportConfigs(sourceView: sourceView)
|
|
|
|
}
|
|
|
|
}
|