(path, body)
| 23 | } |
| 24 | |
| 25 | async function post(path, body) { |
| 26 | return req(path, { method: "POST", headers: { "content-type": "application/json" }, body: JSON.stringify(body) }); |
| 27 | } |
| 28 | |
| 29 | function ok(label, detail = "") { |
| 30 | events.push({ ok: true, label, detail }); |