DO288-apps/books/routes/authors.js
2019-07-02 17:33:29 +05:30

13 lines
225 B
JavaScript

const express = require('express');
const router = express.Router();
const authors = require('../data/authors');
/* GET users listing. */
router.get('/', (req, res) => {
res.json(authors);
});
module.exports = router;