Rimossa funzione test

This commit is contained in:
2025-11-12 08:39:09 +01:00
parent dd366c8faa
commit 5f997753a1

View File

@@ -1,18 +1,5 @@
const apiUrl = "http://localhost:5011";
function orkodyo(){
let reply;
const requestOptions = {
method: "GET",
redirect: "follow"
};
fetch(apiUrl + "/api/pizze", requestOptions)
.then((response) => response.text())
.then((result) => alert(result))
.catch((error) => console.error(error));
}
function listPizze(){
let reply;
const requestOptions = {