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
/
static.js
16 lines
(13 loc)
•
258 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/** * 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;