Pravda. Asynchronní volání je potřeba zpropagovat "nahoru".
app.post('/', async (req, res) => {
const x = await translate(req.body.query, req.body.to);
console.log(x);
})
Pravda. Asynchronní volání je potřeba zpropagovat "nahoru".
app.post('/', async (req, res) => {
const x = await translate(req.body.query, req.body.to);
console.log(x);
})