Skip to content

Instantly share code, notes, and snippets.

@sberoch
Created July 13, 2020 01:39
Show Gist options
  • Save sberoch/03ff730d40470847ac3334b180234d5a to your computer and use it in GitHub Desktop.
Save sberoch/03ff730d40470847ac3334b180234d5a to your computer and use it in GitHub Desktop.
class CharactersViewModel @ViewModelInject constructor(
private val repository: CharacterRepository
) : ViewModel() {
val characters: LiveData<Resource<List<Character>>> = repository.getCharacters()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment