Created
April 30, 2019 20:43
-
-
Save volkanbicer/e63586c76d27f405d81ba3e576b9149b 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
struct DependecyContainer { | |
private let bookService: BookService | |
private let auth: Auth | |
init(bookService: BookService = MockBookService(), | |
auth: Auth = MockAuth()) { | |
self.bookService = bookService | |
self.auth = auth | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment