DO288-apps/books/routes/authors.js
2019-07-03 10:51:18 +05:30

14 lines
235 B
JavaScript

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