// 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 { walletsManager.start() priceService.start() gasService.start() return true } }