first version of sample parser.

This commit is contained in:
Bryce Covert
2017-12-06 17:55:09 -08:00
commit 0c442b29e0
10 changed files with 176 additions and 0 deletions

13
project.clj Normal file
View File

@@ -0,0 +1,13 @@
(defproject auto-ap "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:min-lein-version "2.0.0"
:dependencies [[org.clojure/clojure "1.8.0"]
[compojure "1.6.0"]
[ring/ring-defaults "0.2.1"]
[ring/ring-json "0.4.0"]]
:plugins [[lein-ring "0.9.7"]]
:ring {:handler auto-ap.handler/app}
:profiles
{:dev {:dependencies [[javax.servlet/servlet-api "2.5"]
[ring/ring-mock "0.3.0"]]}})