Skip to content

Instantly share code, notes, and snippets.

@ekoo
Created June 15, 2020 02:32
Show Gist options
  • Save ekoo/4ff450072226a3226397efaf42b0f6c4 to your computer and use it in GitHub Desktop.
Save ekoo/4ff450072226a3226397efaf42b0f6c4 to your computer and use it in GitHub Desktop.
class MainViewModel(private val repository: MainRepository = MainRepository()): ViewModel() {
fun movieList() = repository.getMovie().cachedIn(viewModelScope)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment