reitit/examples/http/project.clj

8 lines
312 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"
:dependencies [[org.clojure/clojure "1.9.0"]
2018-08-25 13:28:57 +00:00
[org.clojure/core.async "0.4.474"]
2018-08-20 15:48:22 +00:00
[ring "1.6.3"]
2018-09-02 14:52:19 +00:00
[metosin/reitit "0.2.0-alpha1"]]
2018-08-20 15:48:22 +00:00
:repl-options {:init-ns example.server})