diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/app.phel | 8 | ||||
| -rw-r--r-- | src/controller/routes.phel | 10 | ||||
| -rw-r--r-- | src/module/greet.phel | 2 | ||||
| -rw-r--r-- | src/view/main.phel | 4 |
4 files changed, 12 insertions, 12 deletions
diff --git a/src/app.phel b/src/app.phel index bcee391..9e1e0bd 100644 --- a/src/app.phel +++ b/src/app.phel @@ -1,7 +1,7 @@ -(ns lezer\app - (:require lezer\controller\routes) - (:require phel\router :as r) - (:require phel\http :as h)) +(ns lezer.app + (:require lezer.controller.routes) + (:require phel.router :as r) + (:require phel.http :as h)) (def app (r/handler diff --git a/src/controller/routes.phel b/src/controller/routes.phel index 93674d8..5f93cc2 100644 --- a/src/controller/routes.phel +++ b/src/controller/routes.phel @@ -1,8 +1,8 @@ -(ns lezer\controller\routes - (:require lezer\view\main :refer [index-html]) - (:require lezer\module\greet :as g) - (:require phel\router :as r) - (:require phel\http :as h)) +(ns lezer.controller.routes + (:require lezer.view.main :refer [index-html]) + (:require lezer.module.greet :as g) + (:require phel.router :as r) + (:require phel.http :as h)) (defn index-handler [req] (h/response-from-map {:status 200 diff --git a/src/module/greet.phel b/src/module/greet.phel index 09f49bd..0b1e780 100644 --- a/src/module/greet.phel +++ b/src/module/greet.phel @@ -1,4 +1,4 @@ -(ns lezer\module\greet) +(ns lezer.module.greet) (defn greet [name] (str "Hello, " name)) diff --git a/src/view/main.phel b/src/view/main.phel index 277c4d3..5d369ab 100644 --- a/src/view/main.phel +++ b/src/view/main.phel @@ -1,5 +1,5 @@ -(ns lezer\view\main - (:require phel\html :refer [html doctype])) +(ns lezer.view.main + (:require phel.html :refer [html doctype])) (def- head [:head |
