https://expressproject01.herokuapp.com/
curl 'https://expressproject01.herokuapp.com/books'
curl 'https://expressproject01.herokuapp.com/books/1'
curl -X POST -d '{ id: 5, titulo: 'Título', autor: 'Autor', isbn: 00000, ano_lancamento: 2001 }' 'https://expressproject01.herokuapp.com/books'
curl -X PUT -d '{ titulo: 'Título', autor: 'Autor', isbn: 00000, ano_lancamento: 2001 }' 'https://expressproject01.herokuapp.com/books/1'
curl -X DELETE 'https://expressproject01.herokuapp.com/books/1'