Pipeline orchestrates request/response transformation with middleware support.
| 33 | |
| 34 | // Pipeline orchestrates request/response transformation with middleware support. |
| 35 | type Pipeline struct { |
| 36 | registry *Registry |
| 37 | requestMiddleware []RequestMiddleware |
| 38 | responseMiddleware []ResponseMiddleware |
| 39 | } |
| 40 | |
| 41 | // NewPipeline constructs a pipeline bound to the provided registry. |
| 42 | func NewPipeline(registry *Registry) *Pipeline { |
nothing calls this directly
no outgoing calls
no test coverage detected