Simple API gateway for webhooks

chore: allow all origin

finxol.io e3adea51 793ac202

verified
+2
+2
src/sensors.ts
··· 135 135 136 136 const sensors = new Hono() 137 137 .get("/country", async (c) => { 138 + c.header("Access-Control-Allow-Origin", "*") 139 + 138 140 // Served cached data if available 139 141 const cached = await kv.get<Country>(["country"]) 140 142 if (cached.value) {