shithub: furgit

ref: 3a7df704f3a48015c898ea7cb694359f5b326515
dir: /refstore/reftable/path.go/

View raw version
package reftable

import "path"

// pathMatch applies path.Match to full ref names.
func pathMatch(pattern, name string) (bool, error) {
	return path.Match(pattern, name)
}