Skip to content

Instantly share code, notes, and snippets.

@volkanbicer
Created April 30, 2019 20:48
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/cd06893f8f99e5591b6a20221bb74827 to your computer and use it in GitHub Desktop.
Save volkanbicer/cd06893f8f99e5591b6a20221bb74827 to your computer and use it in GitHub Desktop.
protocol BooksViewControllerBuilder {
func build() -> BooksViewContoller
}
extension DependecyContainer: BooksViewControllerBuilder {
func build() -> BooksViewContoller {
return BooksViewContoller(bookService: bookService, auth: auth)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment