interface PostRepository { | |
fun getNewPostList(): Observable<List<NewPost>> | |
// ... | |
} | |
class PostRepositoryImpl : PostRepository { | |
private val localDataSource: NewPostDao by inject() | |
override fun getNewPostList(): Observable<List<NewPost>> { | |
return localDataSource.getAll() | |
} | |
// ... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment