mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
71f634bec4
commit_hash:89fe30647b25dbbfb4349af0173ca6023d3a2e29
14 lines
254 B
Swift
14 lines
254 B
Swift
import UIKit
|
|
|
|
@main
|
|
final class AppDelegate: UIResponder, UIApplicationDelegate {
|
|
var window: UIWindow?
|
|
|
|
func application(
|
|
_: UIApplication,
|
|
didFinishLaunchingWithOptions _: [UIApplication.LaunchOptionsKey: Any]?
|
|
) -> Bool {
|
|
true
|
|
}
|
|
}
|