Created
April 30, 2019 21:11
-
-
Save volkanbicer/614b26d31d4f7b2009ce630965700701 to your computer and use it in GitHub Desktop.
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
class VideosViewController: UIViewController { | |
} | |
protocol VideosViewControllerBuilder { | |
func build() -> VideosViewController | |
} | |
extension DependencyContaier: VideosViewControllerBuilder { | |
func build() -> VideosViewController { | |
return VideosViewController() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment