TODO: replace this with the upstream OTEL env propagation when it is released. envCarrier is a propagation.TextMapCarrier that is used to extract or inject tracing environment variables. This is used with a propagation.TextMapPropagator
| 18 | // inject tracing environment variables. This is used with a |
| 19 | // propagation.TextMapPropagator |
| 20 | type envCarrier struct { |
| 21 | Env []string |
| 22 | } |
| 23 | |
| 24 | var _ propagation.TextMapCarrier = (*envCarrier)(nil) |
| 25 |
nothing calls this directly
no outgoing calls
no test coverage detected