import org.http4s.Status._
import org.http4s.Method._
import org.http4s.EntityDecoder
implicitdef client: Client = ???
val r: Task[Result[String]] = GET("https://www.foo.bar/").on(Ok)(EntityDecoder.text)
val req1 = r.run
val req2 = r.run // Each run is fetches a new result based on the behavior of the Client
Provides extension methods for using the a http4s org.http4s.client.Client