Quando eu faço uma requisição GET pelo postman ele retorna esse erro:
The first argument must be of type string or an instance of Buffer, ArrayBuffer, or Array or an Array-like Object. Received function getTodosLivros
function getLivros(req, res) { try { const livros = getTodosLivros; res.send(livros); } catch (error) { res.status(500); res.send(error.message); } }
se eu troco a função getTodosLivros por JSON.parse(fs.readFileSync("livros.json")), ele funciona e me retorna o JSON completo com todos livros