(c rune)
| 74 | } |
| 75 | |
| 76 | func isValidPatternRune(c rune) bool { |
| 77 | return isValidRune(c) || c == '*' |
| 78 | } |
| 79 | |
| 80 | // Pattern can be used to match secret identifiers. |
| 81 | // Valid patterns must follow the same validation rules as secret identifiers, with the exception |
no test coverage detected