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
1 change: 1 addition & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ go-sdk/
├── serde/ # Marshaler/Unmarshaler seam + JSON default + Tristate
├── sse/ # Server-Sent Events (WHATWG) parser
├── webhook/ # inbound signature verification (HMAC + timestamp)
├── formdata/ # multipart/form-data body builder
├── .golangci.yml Makefile .github/workflows/ci.yml
└── CONTRIBUTING.md CLAUDE.md README.md LICENSE
```
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ standard library.
| [`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. |
| [`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. |

### Pipeline order
Expand Down
3 changes: 3 additions & 0 deletions doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,8 @@
// The webhook package verifies inbound webhook signatures (constant-time HMAC
// with a timestamp-tolerance window).
//
// The formdata package builds replayable multipart/form-data request bodies for
// file uploads.
//
// All of core depends only on the Go standard library.
package dexpace
Loading
Loading