(audience jwt.ClaimStrings, token string)
| 359 | } |
| 360 | |
| 361 | func audienceContains(audience jwt.ClaimStrings, token string) bool { |
| 362 | return slices.Contains(audience, token) |
| 363 | } |
| 364 | |
| 365 | func getAuthContext(fullMethod string) (*common.AuthContext, error) { |
| 366 | methodTokens := strings.Split(fullMethod, "/") |
no outgoing calls
no test coverage detected