Chapter 10: profiling recipe sample

This commit is contained in:
Beth Griggs
2020-08-15 17:33:37 +01:00
parent d74bfe94dc
commit 6c6df60315
10 changed files with 931 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
var express = require('express');
var router = express.Router();
/* GET users listing. */
router.get('/', function(req, res, next) {
res.send('respond with a resource');
});
module.exports = router;