(auth *coreauth.Auth, key string)
| 561 | } |
| 562 | |
| 563 | func authAttribute(auth *coreauth.Auth, key string) string { |
| 564 | if auth == nil || len(auth.Attributes) == 0 { |
| 565 | return "" |
| 566 | } |
| 567 | return auth.Attributes[key] |
| 568 | } |
| 569 | |
| 570 | func isRuntimeOnlyAuth(auth *coreauth.Auth) bool { |
| 571 | if auth == nil || len(auth.Attributes) == 0 { |
no outgoing calls
no test coverage detected