Last active
January 26, 2022 03:14
-
-
Save fededri/67c0f7c615f9acf40494b4d4acf04d3d 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
class MoviesViewModel : | |
ArchViewModel<MoviesActions, MoviesState, MoviesEffects, MovieEvents, Nothing>( | |
updater = MoviesUpdater(), | |
initialState = MoviesState(), | |
initialEffects = setOf(MoviesEffects.LoadMovies()), | |
processor = MoviesProcessor(threadInfo), | |
) { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment