sabirvirtuoso/Mockit

View on GitHub
Example/Mockit/AppDelegate.swift

Summary

Maintainability
A
0 mins
Test Coverage
//
//  AppDelegate.swift
//  Mockit
//
//  Created by Syed Sabir Salman-Al-Musawi on 05/17/2016.
//  Copyright (c) 2016 Syed Sabir Salman-Al-Musawi. All rights reserved.
//

import UIKit

@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {

    var window: UIWindow?

    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
        // Override point for customization after application launch.
        return true
    }
}