// Copyright © 2021 Tokenary. All rights reserved. import UIKit @main class AppDelegate: UIResponder, UIApplicationDelegate { private let walletsManager = WalletsManager.shared func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { walletsManager.start() return true } }