SimpleTunnel/AppDelegate.swift

/*
    Copyright (C) 2016 Apple Inc. All Rights Reserved.
    See LICENSE.txt for this sample’s licensing information
    
    Abstract:
    This file contains the UIApplicationDelegate class for the SimpleTunnel app.
*/
 
import UIKit
import NetworkExtension
 
/// The UIApplicationDelegate for the SimpleTunnel app.
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
 
    // MARK: Properties
 
    /// The main UIWindow object for SimpleTunnel.
    var window: UIWindow?
 
}