20 lines
410 B
Swift
20 lines
410 B
Swift
//
|
|
// AppDelegate.swift
|
|
// DAO
|
|
//
|
|
// Created by Ivan Vavilov on 06/13/2017.
|
|
// Copyright (c) 2017 RedMadRobot. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
@UIApplicationMain
|
|
class AppDelegate: UIResponder, UIApplicationDelegate {
|
|
|
|
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
|
|
return true
|
|
}
|
|
|
|
}
|
|
|