| 481 | } |
| 482 | |
| 483 | type RepoInfo struct { |
| 484 | User string |
| 485 | Repo string |
| 486 | } |
| 487 | |
| 488 | func (r *RepoInfo) Match(user string, repo string) bool { |
| 489 | return EasyWildcardMatch(strings.ToLower(user), strings.ToLower(r.User)) && EasyWildcardMatch(strings.ToLower(repo), strings.ToLower(r.Repo)) |
nothing calls this directly
no outgoing calls
no test coverage detected