response = await fetch('http://0.0.0.0:5000/', {
method: 'POST',
headers: {
'Content-Type': 'application/text;charset=utf-8'
},
body: "1"
});
result = await response.json();
alert(result.message);
const response = await fetch('http://localhost:5000/', {
method: 'POST',
headers: {
'Content-Type': 'application/text;charset=utf-8'
},
body: "1"
});
const result = await response.json();
alert(result.message);