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-12-13 23:01:49 +03:00
|
|
|
private let gasService = GasService.shared
|
|
|
|
private let priceService = PriceService.shared
|
2021-12-09 15:41:13 +03:00
|
|
|
|
2021-08-14 22:28:36 +03:00
|
|
|
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
|
2021-12-13 23:01:49 +03:00
|
|
|
priceService.start()
|
|
|
|
gasService.start()
|
2021-12-15 21:59:20 +03:00
|
|
|
walletsManager.start()
|
2021-08-14 22:28:36 +03:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|