Created
January 12, 2017 16:08
-
-
Save AndreyPanov/64e1c5563833a0217488f3664c7e7da4 to your computer and use it in GitHub Desktop.
ItemCoordinator
This file contains 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
final class ItemCoordinator { | |
private let factory: ItemModuleFactory | |
private let coordinatorFactory: CoordinatorFactory | |
private let router: Router | |
init(router: Router, | |
factory: ItemModuleFactory, | |
coordinatorFactory: CoordinatorFactory) { | |
self.router = router | |
self.factory = factory | |
self.coordinatorFactory = coordinatorFactory | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment