This commit is contained in:
2021-07-26 22:38:47 -04:00
parent 90e7ca222c
commit abb45ba800
+2 -2
View File
@@ -93,8 +93,8 @@ setInterval(function () {
}, 1000);
app.post('/internet', (req, res) => {
bounds = req.body
console.log(req.body)
bounds = res.body
console.log(res.body)
return res.send('Received a POST HTTP method');
});