26 lines
620 B
Swift
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()
|
|
]
|
|
}
|
|
}
|