mirror of
https://github.com/lil-org/tokenary.git
synced 2024-11-27 10:52:40 +03:00
20 lines
550 B
Swift
20 lines
550 B
Swift
// Copyright © 2021 Tokenary. All rights reserved.
|
|
|
|
import UIKit
|
|
|
|
@main
|
|
class AppDelegate: UIResponder, UIApplicationDelegate {
|
|
|
|
private let walletsManager = WalletsManager.shared
|
|
private let gasService = GasService.shared
|
|
private let priceService = PriceService.shared
|
|
|
|
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
|
|
priceService.start()
|
|
gasService.start()
|
|
walletsManager.start()
|
|
return true
|
|
}
|
|
|
|
}
|