mirror of
https://github.com/sstent/node.git
synced 2026-01-25 14:42:00 +00:00
8 lines
109 B
JavaScript
8 lines
109 B
JavaScript
|
|
/*
|
|
* GET home page.
|
|
*/
|
|
|
|
exports.index = function(req, res){
|
|
res.render('index', { title: 'Express' })
|
|
}; |