// // AppDelegate.swift // TEMPLATE_Example // // Created by Gaétan Zanella on 05/03/2019. // Copyright © 2019 Fabernovel. All rights reserved. //
import UIKit
@UIApplicationMain class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow? func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { window = UIWindow(frame: UIScreen.main.bounds) window?.rootViewController = ViewController() window?.makeKeyAndVisible() return true }
}