My monster, she lives!
This commit is contained in:
parent
e455387f96
commit
8f9fa08157
3 changed files with 85 additions and 2 deletions
|
|
@ -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)))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue