Skip to content

Instantly share code, notes, and snippets.

@PatilShreyas
Created April 21, 2020 10:25
Show Gist options
  • Save PatilShreyas/a218ce3c5a77fb6acbdd1219225562d9 to your computer and use it in GitHub Desktop.
Save PatilShreyas/a218ce3c5a77fb6acbdd1219225562d9 to your computer and use it in GitHub Desktop.
class MainViewModel(private val repository: PostsRepository) : ViewModel() {
fun getAllPosts() = repository.getAllPosts()
fun addPost(post: Post) = repository.addPost(post)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment