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
3 changes: 2 additions & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ go-sdk/
├── instrumentation/ # tracing + metrics SPIs, no-op defaults, policies
├── config/ # layered override→env→default settings
├── serde/ # Marshaler/Unmarshaler seam + JSON default + Tristate
├── sse/ webhook/ # placeholders (doc.go only)
├── sse/ # Server-Sent Events (WHATWG) parser
├── webhook/ # placeholder (doc.go only)
├── .golangci.yml Makefile .github/workflows/ci.yml
└── CONTRIBUTING.md CLAUDE.md README.md LICENSE
```
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,10 @@ 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. |
| root [`dexpace`](.) | Umbrella `Client` wiring the default policy stack. |

Reserved for upcoming work (placeholder packages today): `sse`, `webhook`.
Reserved for upcoming work (placeholder packages today): `webhook`.

### Pipeline order

Expand Down
3 changes: 3 additions & 0 deletions doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,8 @@
// JSON default) and Tristate for JSON PATCH payloads; httperr.ResponseError.DecodeInto
// 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.
//
// All of core depends only on the Go standard library.
package dexpace
Loading
Loading