router.get('/:id/edit', async (req, res, next) => {
    try {
        let id = req.params.id;

        let book = await books.read(id);