Tusker/Tusker/AppDelegate.swift

20 lines
457 B
Swift
Raw Normal View History

2018-08-16 02:27:48 +00:00
//
// AppDelegate.swift
// Tusker
//
// Created by Shadowfacts on 8/15/18.
// Copyright © 2018 Shadowfacts. All rights reserved.
//
import UIKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
2019-09-19 20:55:15 +00:00
AppShortcutItem.createItems(for: application)
2018-08-16 02:27:48 +00:00
return true
}
2019-09-19 20:55:15 +00:00
2018-08-16 02:27:48 +00:00
}