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