(context.Context, RequestTransformRequest)
| 911 | // RequestNormalizer converts request payloads into a canonical format. |
| 912 | type RequestNormalizer interface { |
| 913 | NormalizeRequest(context.Context, RequestTransformRequest) (PayloadResponse, error) |
| 914 | } |
| 915 | |
| 916 | // ResponseTranslator converts canonical response payloads to another format. |
no outgoing calls