Skip to content

Instantly share code, notes, and snippets.

@volkanbicer
Created April 30, 2019 21:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save volkanbicer/614b26d31d4f7b2009ce630965700701 to your computer and use it in GitHub Desktop.
Save volkanbicer/614b26d31d4f7b2009ce630965700701 to your computer and use it in GitHub Desktop.
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