ConnectServiceHandler wraps APIV1Service to implement Connect handler interfaces. It adapts the existing gRPC service implementations to work with Connect's request/response wrapper types. This wrapper pattern allows us to: - Reuse existing gRPC service implementations - Support both native gRPC an
| 19 | // - Support both native gRPC and Connect protocols |
| 20 | // - Maintain a single source of truth for business logic. |
| 21 | type ConnectServiceHandler struct { |
| 22 | *APIV1Service |
| 23 | } |
| 24 | |
| 25 | // NewConnectServiceHandler creates a new Connect service handler. |
| 26 | func NewConnectServiceHandler(svc *APIV1Service) *ConnectServiceHandler { |
nothing calls this directly
no outgoing calls
no test coverage detected