mirror of
https://github.com/element-hq/element-x-ios.git
synced 2025-03-11 13:59:13 +00:00
21 lines
475 B
Swift
21 lines
475 B
Swift
//
|
|
// AppDelegate.swift
|
|
// ElementX
|
|
//
|
|
// Created by Stefan Ceriu on 11.02.2022.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
@main
|
|
class AppDelegate: UIResponder, UIApplicationDelegate {
|
|
|
|
private var appCoordinator: AppCoordinator!
|
|
|
|
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil) -> Bool {
|
|
appCoordinator = AppCoordinator()
|
|
appCoordinator.start()
|
|
return true
|
|
}
|
|
}
|