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"]
2019-01-17 17:29:21 +00:00
[org.clojure/core.async "0.4.490"]
2018-09-03 09:35:28 +00:00
[funcool/promesa "1.9.0"]
[manifold "0.1.8"]
2019-01-17 17:29:21 +00:00
[ring/ring-jetty-adapter "1.7.1"]
2019-03-17 12:22:15 +00:00
[metosin/reitit "0.3.0"]]
2018-08-20 15:48:22 +00:00
:repl-options {:init-ns example.server})