UNPKG
http-teapot-comment
Version:
latest (0.1.0)
0.1.0
A comment system for your website
github.com/http-teapot/comment
http-teapot/comment
http-teapot-comment
/
app
/
controller
/
test.js
14 lines
(12 loc)
•
197 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** * Test controller */
var
Test = {
/** * Render a basic HTML page */
hello:
function
(
req, res, route
)
{ res.
end
(res.
render
(
'test.html.swig'
, {})); } } module.exports = Test;