Merge pull request 'feature: poll the orders API' (#1) from feature/poll-orders into main

This commit is contained in:
2026-09-04 02:36:19 +00:00

2
app.js Normal file
View File

@@ -0,0 +1,2 @@
const orders = [];
setInterval(() => fetch('/api/orders').then(r => r.json()), 2000);