Created
January 23, 2021 18:51
-
-
Save Rashidium/25a7db536830f1f27e525e83220a7f59 to your computer and use it in GitHub Desktop.
FeedRouter
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
| import Foundation | |
| protocol FeedRoutingLogic: class { | |
| } | |
| protocol FeedDataPassing: class { | |
| var dataStore: FeedDataStore? { get } | |
| } | |
| final class FeedRouter: FeedRoutingLogic, FeedDataPassing { | |
| weak var viewController: FeedViewController? | |
| var dataStore: FeedDataStore? | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment