Created
August 26, 2020 12:58
-
-
Save adamw/4d2041a29a2dc2017c51de03537c3bcf to your computer and use it in GitHub Desktop.
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
trait SttpBackend[F[_], +P] { | |
def send[T, R >: P with Effect[F]](request: Request[T, R]): F[Response[T]] | |
def close(): F[Unit] | |
def responseMonad: MonadError[F] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment