UNPKG

http-teapot-comment

Version:

A comment system for your website

16 lines (13 loc) 258 B
/** * Static controller */ var config = require('../../config'); var Static = { /** * Root action */ index: function (req, res, route) { res.end(res.render('static/index.html.swig', {socket: config.socket})); } } module.exports = Static;