Hi! Is it possible to ignore the `request, respons...
# kotlin-fuel
l
Hi! Is it possible to ignore the
request, response, result
stuff and go directly to the result part?
a
You could do the following:
Copy code
val response = "x".httpGet().response().second.body.asString("text/plain")
But keep in mind that any error handling is completely off the table then 😉