mirror of
https://github.com/sstent/expressmongotest.git
synced 2026-01-25 16:42:00 +00:00
9 lines
149 B
JavaScript
9 lines
149 B
JavaScript
/*
|
|
* GET home page.
|
|
*/
|
|
|
|
module.exports = function(app) {
|
|
app.get('/', function(req, res){
|
|
res.render('index', { title: 'Express' });
|
|
});
|
|
}; |