Fork me on GitHub
#ring-swagger
<
2018-12-10
>
ikitommi07:12:03

@jon324 the aleph-example is in the blog:

(defn ring->aleph [handler]
  (fn [request]
    (let [response (d/deferred)]
      (handler request #(d/success! response %) #(d/error! response %))
      response)))

mping14:12:36

@jon324 how are you starting your webapp?

Jon Walch18:12:14

I wound up sticking with aleph and using manifold streams instead.