UNPKG

http-teapot-comment

Version:

A comment system for your website

14 lines (12 loc) 197 B
/** * Test controller */ var Test = { /** * Render a basic HTML page */ hello: function (req, res, route) { res.end(res.render('test.html.swig', {})); } } module.exports = Test;