Add a dummy page to make clojurecup.com checks happy :)

This commit is contained in:
Aaron Mueller 2014-09-27 17:32:32 +02:00
parent 34bbcb277c
commit 54e24f0f19

View file

@ -1,11 +1,13 @@
(ns luduverse.handler
(:require [compojure.core :refer [defroutes]]
(:require [compojure.core :refer :all]
[compojure.route :as route]
[noir.util.middleware :as middleware]))
[noir.util.middleware :as middleware]
[luduverse.pages :as pages]))
(defroutes core-routes
(route/resources "/")
(route/not-found "Nothing to see here at the moment ..."))
(GET "/" [] (pages/front-page))
(route/not-found "404, sorry."))
(defn init [])