Getting the right data into the manifest; sadly, not succeeding in getting

it out again.
This commit is contained in:
Simon Brooke 2014-07-27 21:08:55 +01:00
parent e4dff424be
commit 8e5b526c14
5 changed files with 36 additions and 20 deletions

View file

@ -1,7 +1,9 @@
(ns mw-ui.repl
(:use mw-ui.handler
ring.server.standalone
[ring.middleware file-info file]))
[ring.middleware file-info file])
(:gen-class)
)
(defonce server (atom nil))
@ -32,3 +34,6 @@
(defn stop-server []
(.stop @server)
(reset! server nil))
(defn -main []
(start-server))