summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/app.phel4
-rw-r--r--src/controller/routes.phel6
-rw-r--r--src/module/greet.phel4
-rw-r--r--src/view/main.phel4
4 files changed, 9 insertions, 9 deletions
diff --git a/src/app.phel b/src/app.phel
index a9d8af3..bcee391 100644
--- a/src/app.phel
+++ b/src/app.phel
@@ -1,5 +1,5 @@
-(ns web-skeleton\app
- (:require web-skeleton\controller\routes)
+(ns lezer\app
+ (:require lezer\controller\routes)
(:require phel\router :as r)
(:require phel\http :as h))
diff --git a/src/controller/routes.phel b/src/controller/routes.phel
index ae0cdf1..93674d8 100644
--- a/src/controller/routes.phel
+++ b/src/controller/routes.phel
@@ -1,6 +1,6 @@
-(ns web-skeleton\controller\routes
- (:require web-skeleton\view\main :refer [index-html])
- (:require web-skeleton\module\greet :as g)
+(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))
diff --git a/src/module/greet.phel b/src/module/greet.phel
index 239e425..09f49bd 100644
--- a/src/module/greet.phel
+++ b/src/module/greet.phel
@@ -1,4 +1,4 @@
-(ns web-skeleton\module\greet)
+(ns lezer\module\greet)
(defn greet [name]
- (str "Hello, " name)) \ No newline at end of file
+ (str "Hello, " name))
diff --git a/src/view/main.phel b/src/view/main.phel
index 34cb792..ddff28e 100644
--- a/src/view/main.phel
+++ b/src/view/main.phel
@@ -1,4 +1,4 @@
-(ns web-skeleton\view\main
+(ns lezer\view\main
(:require phel\html :refer [html doctype]))
(def- head
@@ -27,4 +27,4 @@
(def index-html (html
(doctype :html5)
head
- content)) \ No newline at end of file
+ content))