Files
raspberry/iOS/Wallet/Sources/Application/WalletApplicationDelegate.swift
2022-05-30 12:55:13 +03:00

26 lines
620 B
Swift

//
// WalletApplicationDelegate.swift
// List
//
// Created by Igor Danich on 25.06.2020.
// Copyright © 2020 Igor Danich. All rights reserved.
//
import UIKit
import CoreData
@UIApplicationMain
class WalletApplicationDelegate: PluggableApplicationDelegate {
override var services: [ApplicationService] {
[
UIApplicationService(animation: Animation.slow),
IQKeyboardAppicationService(),
FirebaseApplicationService(),
UserNotificationApplicationService(),
CommonApplicationService(),
BranchApplicationService()
]
}
}