tokenary/Tokenary iOS/AppDelegate.swift
2021-12-15 21:59:20 +03:00

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
}
}