Adding books microservice for GE 8.6
This commit is contained in:
10
books/routes/index.js
Normal file
10
books/routes/index.js
Normal file
@@ -0,0 +1,10 @@
|
||||
const express = require('express');
|
||||
|
||||
const router = express.Router();
|
||||
|
||||
/* GET home page. */
|
||||
router.get('/', (req, res) => {
|
||||
res.render('index', { title: 'The Book List' });
|
||||
});
|
||||
|
||||
module.exports = router;
|
||||
Reference in New Issue
Block a user