Skip to content

Instantly share code, notes, and snippets.

@psteiger
Last active November 21, 2020 12:47
Show Gist options
  • Select an option

  • Save psteiger/522c1b5a7bf954cd75e51ef209b7804b to your computer and use it in GitHub Desktop.

Select an option

Save psteiger/522c1b5a7bf954cd75e51ef209b7804b to your computer and use it in GitHub Desktop.
LiveData End-to-End Repository
@Singleton
class NearbyUsersRepository @Inject constructor(
nearbyUsersDataSource: NearbyUsersDataSource
) {
val locations get() = nearbyUsersDataSource.locations
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment