add interactions (cheer/faves)

This commit is contained in:
Devin Zuczek
2026-06-15 12:28:26 -04:00
parent 95e6a06db5
commit 5f3ec3b8c7
8 changed files with 226 additions and 23 deletions
@@ -28,4 +28,10 @@ const app = new Hono<App>()
// Periodic session heartbeat. Same deal — accept and ack with 200.
.post('/data/heartbeat', (c) => c.body(null, 200))
// Analytics identify call (player/device identification). Accept and ack.
.post('/identify', (c) => c.body(null, 200))
// Generic analytics HTTP API sink. Accept and ack.
.post('/httpapi', (c) => c.body(null, 200))
export default app