mirror of
https://github.com/JohnEstropia/CoreStore.git
synced 2026-03-29 21:52:02 +02:00
27 lines
527 B
Swift
27 lines
527 B
Swift
//
|
|
// AppDelegate.swift
|
|
// LegacyDemo
|
|
//
|
|
// Created by John Rommel Estropia on 2015/05/02.
|
|
// Copyright © 2018 John Rommel Estropia. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
|
|
// MARK: - AppDelegate
|
|
|
|
@UIApplicationMain
|
|
class AppDelegate: UIResponder, UIApplicationDelegate {
|
|
|
|
// MARK: UIApplicationDelegate
|
|
|
|
var window: UIWindow?
|
|
|
|
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil) -> Bool {
|
|
|
|
return true
|
|
}
|
|
}
|
|
|