13 lines
334 B
Swift
13 lines
334 B
Swift
import UIKit
|
|
|
|
@UIApplicationMain
|
|
class AppDelegate: UIResponder, UIApplicationDelegate {
|
|
|
|
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
|
|
AppController.shared.show(in: UIWindow(frame: UIScreen.main.bounds))
|
|
return true
|
|
}
|
|
|
|
}
|
|
|