12 lines
309 B
Swift
12 lines
309 B
Swift
|
//
|
||
|
// Copyright © 2018 WireGuard LLC. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
extension AppCoordinator: TunnelConfigurationTableViewControllerDelegate {
|
||
|
func didSave(tunnel: Tunnel, tunnelConfigurationTableViewController: TunnelConfigurationTableViewController) {
|
||
|
saveTunnel(tunnel)
|
||
|
}
|
||
|
}
|