diff --git a/pkg/agentic/transport.go b/pkg/agentic/transport.go index 48a2d4d..0623af5 100644 --- a/pkg/agentic/transport.go +++ b/pkg/agentic/transport.go @@ -4,12 +4,15 @@ package agentic import ( "context" - "net/http" + "net/http" // Note: AX-6 — structural HTTP transport boundary for core.API protocol streams and raw MCP POST/SSE exchange; no exported core/api generic request wrapper covers this file. "time" core "dappco.re/go/core" ) +// defaultClient centralises the low-level HTTP boundary owned by this file. +// Higher layers should go through core.Drive/core.API; this transport package +// is the intrinsic implementation behind those abstractions. var defaultClient = &http.Client{Timeout: 30 * time.Second} type httpStream struct {