{
const url = `https://patchbay.pub/pubsub/${id3}`
const msg = body => ({headers: {"content-type": "text/plain"}, method: "POST", body})
const subscriber1 = fetch(url).then(response => response.text())
const subscriber2 = fetch(url).then(response => response.text())
yield "2 subscribers launched. Wait 3 seconds until publishing"
await Promises.delay(3000)
yield "Publishing..."
await fetch(url, msg("hello all subscribers"))
yield "Published"
yield Promise.all([subscriber1, subscriber2])
}