(auth *coreauth.Auth)
| 2165 | } |
| 2166 | |
| 2167 | func authMetadata(auth *coreauth.Auth) map[string]any { |
| 2168 | if auth == nil { |
| 2169 | return nil |
| 2170 | } |
| 2171 | return auth.Metadata |
| 2172 | } |
| 2173 | |
| 2174 | func cloneHeader(in http.Header) http.Header { |
| 2175 | if len(in) == 0 { |
no outgoing calls
no test coverage detected