First version

This commit is contained in:
2024-12-16 16:35:12 +01:00
commit 69bc5698bd
52 changed files with 5598 additions and 0 deletions

View File

@ -0,0 +1,10 @@
export async function GET() {
const res = await fetch('http://backend:8000/api/waiters', {
headers: {
'Content-Type': 'application/json',
},
});
const data = await res.json();
return Response.json(data);
}