Last active
November 21, 2020 12:47
-
-
Save psteiger/522c1b5a7bf954cd75e51ef209b7804b to your computer and use it in GitHub Desktop.
LiveData End-to-End Repository
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @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