package nova.monadic_sfx.http.requests import nova.monadic_sfx.AppTypes import nova.monadic_sfx.AppTypes.HttpBackend import nova.monadic_sfx.models._ import sttp.client._ import sttp.client.circe._ class DummyRequest(backend: HttpBackend) extends AppTypes { private implicit val _backend = backend def send = basicRequest .get(uri"https://httpbin.org/get") .response(asJson[HttpBinResponse]) .send() }