Skip to content

Instantly share code, notes, and snippets.

@raghunandankavi2010
Created January 2, 2019 15:00
Show Gist options
  • Save raghunandankavi2010/3d71b29b80771ce236ee39a90a170208 to your computer and use it in GitHub Desktop.
Save raghunandankavi2010/3d71b29b80771ce236ee39a90a170208 to your computer and use it in GitHub Desktop.
koim
class ListScreenViewModel(private val repo: ListRepositoryImpl) : ViewModel() {
fun getUsers() : LiveData<List<Users>> {
return repo.getUsers()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment