Skip to content

Instantly share code, notes, and snippets.

@JorgeCastilloPrz
Created July 30, 2018 16:24
Show Gist options
  • Save JorgeCastilloPrz/6acf62197ced14ea1b7148da91365922 to your computer and use it in GitHub Desktop.
Save JorgeCastilloPrz/6acf62197ced14ea1b7148da91365922 to your computer and use it in GitHub Desktop.
RxModule
class Module {
private val localDataSource: LocalDataSource = LocalDataSource()
private val remoteDataSource: RemoteDataSource = RemoteDataSource()
val repository: TaskRepository = TaskRepository(localDataSource, remoteDataSource)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment