19 lines
482 B
Swift
19 lines
482 B
Swift
//
|
|
// AppDelegate.swift
|
|
// Ably-SoakTest-App
|
|
//
|
|
// Created by Toni Cárdenas on 16/11/2019.
|
|
// Copyright © 2019 Ably. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
@UIApplicationMain
|
|
class AppDelegate: UIResponder, UIApplicationDelegate {
|
|
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
|
|
// Override point for customization after application launch.
|
|
return true
|
|
}
|
|
}
|
|
|