summaryrefslogtreecommitdiff
path: root/routes/index.js
diff options
context:
space:
mode:
authoryo mama <pepper@scannerjammer.com>2015-04-04 01:13:50 -0700
committeryo mama <pepper@scannerjammer.com>2015-04-04 01:13:50 -0700
commit1a3c90165cb6bac4a2e57d9897d6829de0ccc6fc (patch)
tree604f4b5b02b1e24c7c5aad5c4560b0cf53cf9289 /routes/index.js
Diffstat (limited to 'routes/index.js')
-rw-r--r--routes/index.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/routes/index.js b/routes/index.js
new file mode 100644
index 0000000..22f27f7
--- /dev/null
+++ b/routes/index.js
@@ -0,0 +1,9 @@
+/* -*- mode:javascript; coding:utf-8; -*- */
+
+exports.chat = function (req, res) {
+ res.render('chat');
+};
+
+exports.index = function (req, res) {
+ res.render('index')
+};