express/examples/route-separation/site.js
2017-08-05 23:37:39 -04:00

4 lines
101 B
JavaScript

exports.index = function(req, res){
res.render('index', { title: 'Route Separation Example' });
};