summaryrefslogtreecommitdiff
path: root/routes/index.js
blob: 22f27f7dd47ccc00f0720ec97d5f0ab243b22113 (plain)
1
2
3
4
5
6
7
8
9
/* -*- mode:javascript; coding:utf-8; -*- */

exports.chat = function (req, res) {
    res.render('chat');
};

exports.index = function (req, res) {
    res.render('index')
};