tokenary/Tokenary iOS/AppDelegate.swift
2021-12-09 15:41:13 +03:00

16 lines
396 B
Swift

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