Created
April 30, 2019 20:48
-
-
Save volkanbicer/cd06893f8f99e5591b6a20221bb74827 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
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