Last active
August 12, 2021 12:30
-
-
Save denandreychuk/44e234a42c80cd2c85adb571a895a188 to your computer and use it in GitHub Desktop.
Улучшаем состояние AppDelegate с помощью сервисов | https://t.me/BlogSwift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // СВИФТЕР | Блог про Swift | t.me/BlogSwift | |
| @main | |
| class AppDelegate: PluggableApplicationDelegate { | |
| // MARK: Services | |
| override var services: [ApplicationService] { | |
| [ | |
| FirebaseService(), | |
| FacebookService() | |
| ] | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment