MCPcopy Create free account
hub / github.com/PuerNya/git-proxy / RepoInfo

Struct RepoInfo

main.go:483–486  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

481}
482
483type RepoInfo struct {
484 User string
485 Repo string
486}
487
488func (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))

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected