20 lines
483 B
Swift
20 lines
483 B
Swift
//
|
|
// Created by Ryan Ackermann on 7/10/15.
|
|
// Copyright (c) 2015 Ryan Ackermann. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
@UIApplicationMain
|
|
class AppDelegate: UIResponder, UIApplicationDelegate {
|
|
|
|
var window: UIWindow?
|
|
|
|
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool {
|
|
// Override point for customization after application launch.
|
|
return true
|
|
}
|
|
|
|
}
|
|
|