tokenary/Tokenary iOS/AppDelegate.swift

16 lines
396 B
Swift
Raw Normal View History

2021-11-30 15:56:00 +03:00
// Copyright © 2021 Tokenary. All rights reserved.
2021-08-14 22:28:36 +03:00
import UIKit
@main
class AppDelegate: UIResponder, UIApplicationDelegate {
2021-12-09 15:41:13 +03:00
private let walletsManager = WalletsManager.shared
2021-08-14 22:28:36 +03:00
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
2021-12-09 15:41:13 +03:00
walletsManager.start()
2021-08-14 22:28:36 +03:00
return true
}
}