Hi, when doing an async request like: ```clojure (let [response (defer (http/get "http://example.com" {:async? true} (fn [_] _) (fn [_] _))]) ``` `response` is `org.apache.http.HttpResponse` and _not_ a Ring response map. In our use case we're using the code above in our tests. Can the return value of an async request also be wrapped in such a map?