(auth *Auth, key string)
| 119 | } |
| 120 | |
| 121 | func authAttribute(auth *Auth, key string) string { |
| 122 | if auth == nil || auth.Attributes == nil { |
| 123 | return "" |
| 124 | } |
| 125 | return strings.TrimSpace(auth.Attributes[key]) |
| 126 | } |
| 127 | |
| 128 | func authMetadataString(auth *Auth, key string) string { |
| 129 | if auth == nil || auth.Metadata == nil { |
no outgoing calls
no test coverage detected