mirror of
https://github.com/zebrajr/express.git
synced 2025-12-06 00:19:48 +01:00
6 lines
115 B
JavaScript
6 lines
115 B
JavaScript
'use strict'
|
|
|
|
exports.index = function(req, res){
|
|
res.render('index', { title: 'Route Separation Example' });
|
|
};
|