18 lines
409 B
Swift
18 lines
409 B
Swift
|
//
|
||
|
// Copyright © 2018 WireGuard LLC. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import UIKit
|
||
|
import PromiseKit
|
||
|
import NetworkExtension
|
||
|
|
||
|
enum GoVersionCoordinatorError: Error {
|
||
|
case noSession
|
||
|
}
|
||
|
|
||
|
extension AppCoordinator: SettingsTableViewControllerDelegate {
|
||
|
func exportTunnels(settingsTableViewController: SettingsTableViewController, sourceView: UIView) {
|
||
|
self.exportConfigs(sourceView: sourceView)
|
||
|
}
|
||
|
}
|