Created
December 31, 2019 09:56
-
-
Save sgl0v/06457db6a41ac133e88582a9de219d60 to your computer and use it in GitHub Desktop.
This file contains 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
final class MoviesSearchViewModel: MoviesSearchViewModelType { | |
private weak var navigator: MoviesSearchNavigator? | |
private let useCase: MoviesUseCaseType | |
private var cancellables: [AnyCancellable] = [] | |
init(useCase: MoviesUseCaseType, navigator: MoviesSearchNavigator) { | |
self.useCase = useCase | |
self.navigator = navigator | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment