My monster, she lives!

This commit is contained in:
Simon Brooke 2014-07-01 20:21:38 +01:00
parent e455387f96
commit 8f9fa08157
3 changed files with 85 additions and 2 deletions

View file

@ -1,7 +1,8 @@
(ns mw-ui.routes.home
(:use compojure.core)
(:require [mw-ui.layout :as layout]
[mw-ui.util :as util]))
[mw-ui.util :as util]
[mw-ui.render-world :as world]))
(defn home-page []
(layout/render
@ -12,4 +13,5 @@
(defroutes home-routes
(GET "/" [] (home-page))
(GET "/about" [] (about-page)))
(GET "/about" [] (about-page))
(GET "/world" [] (world/render-world)))