Examples for Clojure Ring (#6881)

This commit is contained in:
Graham Cox
2019-05-24 17:24:47 +01:00
committed by Grzegorz Piwowarek
parent 4864f0bc45
commit c90f76a4f8
4 changed files with 84 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
(defproject baeldung-ring "0.1.0-SNAPSHOT"
:dependencies [[org.clojure/clojure "1.10.0"]
[ring/ring-core "1.7.1"]
[ring/ring-jetty-adapter "1.7.1"]
[ring/ring-devel "1.7.1"]]
:plugins [[lein-ring "0.12.5"]]
:ring {:handler ring.core/simple-handler}
:repl-options {:init-ns ring.core})