Files
webServerTest/main.js
2025-08-19 22:12:37 +02:00

8 lines
136 B
JavaScript

async function press() {
const res = await fetch('/press', {
method: 'POST'
});
const data = await res.text();
alert(data);
}