Mateus Carvalho

Results 6 comments of Mateus Carvalho

Added a datomic guide: https://github.com/pedestal/pedestal-docs/pull/160 https://github.com/pedestal/pedestal/pull/716 I thought guides section a good place to add it, but feel free to suggest something else

It looks like we don't have much activity here this year a pity, cause this PR would be pretty cool to come up with Maybe we should consider migrating to...

the new doc was added here: https://github.com/pedestal/pedestal-docs/pull/160 where, I stated as well, that I signed the CA

@m93a Is there a better way to allow extraFunctions to be async (and use await)? this feature would be nice

I was able to reproduce it on `repl` if anyone interested: ```clojure (require '[io.pedestal.http.route.prefix-tree :as p-tree]) (def ptree (-> nil (p-tree/insert "/users/:id" 1) (p-tree/insert "/users/login" 2))) (p-tree/lookup ptree "/users/123") =>...