reitit/examples/http/project.clj

10 lines
404 B
Clojure
Raw Normal View History

2018-08-20 15:48:22 +00:00
(defproject ring-example "0.1.0-SNAPSHOT"
:description "Reitit Ring App with Swagger"
2018-12-26 13:43:26 +00:00
:dependencies [[org.clojure/clojure "1.10.0"]
2018-08-25 13:28:57 +00:00
[org.clojure/core.async "0.4.474"]
2018-09-03 09:35:28 +00:00
[funcool/promesa "1.9.0"]
[manifold "0.1.8"]
2018-10-21 20:10:50 +00:00
[ring/ring-jetty-adapter "1.7.0"]
2018-11-21 14:03:09 +00:00
[metosin/reitit "0.2.9"]]
2018-08-20 15:48:22 +00:00
:repl-options {:init-ns example.server})