Skip to content

Instantly share code, notes, and snippets.

@orcchg
Created June 26, 2021 07:53
Show Gist options
  • Save orcchg/ad5557715f4c70635aab529017086ed5 to your computer and use it in GitHub Desktop.
Save orcchg/ad5557715f4c70635aab529017086ed5 to your computer and use it in GitHub Desktop.
class DefaultStockListInteractor @Inject constructor() : StockListInteractor {
override fun stocks(): Single<List<Stock>> {
throw UnsupportedOperationException("Not implemented")
}
override fun stock(ticker: String): Maybe<Stock> {
throw UnsupportedOperationException("Not implemented")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment