2018-05-23 19:49:10 +00:00
|
|
|
//
|
|
|
|
// AppDelegate.swift
|
2018-05-24 18:13:21 +00:00
|
|
|
// WireGuard
|
2018-05-23 19:49:10 +00:00
|
|
|
//
|
|
|
|
// Created by Jeroen Leenarts on 23-05-18.
|
2018-07-15 09:55:41 +00:00
|
|
|
// Copyright © 2018 Jason A. Donenfeld <Jason@zx2c4.com>. All rights reserved.
|
2018-05-23 19:49:10 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
import UIKit
|
|
|
|
|
|
|
|
@UIApplicationMain
|
|
|
|
class AppDelegate: UIResponder, UIApplicationDelegate {
|
|
|
|
|
|
|
|
var window: UIWindow?
|
|
|
|
var appCoordinator: AppCoordinator!
|
|
|
|
|
|
|
|
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
|
|
|
|
|
|
|
|
self.window = UIWindow(frame: UIScreen.main.bounds)
|
|
|
|
self.appCoordinator = AppCoordinator(window: self.window!)
|
|
|
|
self.appCoordinator.start()
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|