the scoring page is basically done, i cant wait for the backend

This commit is contained in:
2026-06-03 17:41:09 +01:00
parent d1abc83074
commit 069e6cd22c
3 changed files with 115 additions and 16 deletions

View File

@@ -0,0 +1,12 @@
export async function POST({ request }: any) {
// Decode body
let responseBody = await request.json();
// If there is no request then dont respond
if (!responseBody) {
return new Response('nuh uh');
} else {
console.log(JSON.stringify(responseBody));
return new Response('ok');
}
}