Debugging

This commit is contained in:
Pieter Vander Vennet 2023-12-01 22:42:02 +01:00
parent eb12112e11
commit 22095f4640

View file

@ -133,6 +133,7 @@ http.createServer(async (req: http.IncomingMessage, res) => {
} }
if(req.method === "DELETE"){ if(req.method === "DELETE"){
console.log("Got a DELETE", new Date())
await handleDelete(req, res) await handleDelete(req, res)
return return
} }