(w io.Writer, url *url.URL)
| 506 | } |
| 507 | |
| 508 | func writePrimaryURL(w io.Writer, url *url.URL) error { |
| 509 | enc := cbor.NewEncoder(w) |
| 510 | return enc.EncodeTextString(url.String()) |
| 511 | } |
| 512 | |
| 513 | // https://wicg.github.io/webpackage/draft-yasskin-dispatch-bundled-exchanges.html#load-metadata |
| 514 | // Steps 3-7. |
no test coverage detected