You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
234 B

  1. package outwatchapp
  2. import java.nio.ByteBuffer
  3. import monix.reactive.Observable
  4. import sttp.client.SttpBackend
  5. object AppTypes {
  6. type Backend = SttpBackend[monix.eval.Task, Observable[
  7. ByteBuffer
  8. ], sttp.client.NothingT]
  9. }