Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ standard library.
| [`conditions`](./conditions) | Conditional- and range-request value types (ETag, Range, Conditions). |
| [`config`](./config) | Layered override → environment → default settings resolver; non-failing typed getters. |
| [`serde`](./serde) | Serialization seam (Marshaler/Unmarshaler) with a JSON default, plus Tristate for PATCH payloads. |
| [`sse`](./sse) | Server-Sent Events (text/event-stream) WHATWG parser. |
| [`sse`](./sse) | Server-Sent Events (text/event-stream) WHATWG parser + reconnecting Stream (Last-Event-ID replay). |
| [`webhook`](./webhook) | Inbound webhook signature verification (constant-time HMAC + timestamp tolerance). |
| [`formdata`](./formdata) | Multipart/form-data request body builder (replayable; file uploads). |
| root [`dexpace`](.) | Umbrella `Client` wiring the default policy stack. |
Expand Down
3 changes: 2 additions & 1 deletion doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@
// decodes an error body into a typed value.
//
// The sse package parses Server-Sent Events (text/event-stream) into a
// range-over-func iterator of events.
// range-over-func iterator of events, with a reconnecting Stream that replays the
// Last-Event-ID.
//
// The webhook package verifies inbound webhook signatures (constant-time HMAC
// with a timestamp-tolerance window).
Expand Down
Loading
Loading