shithub: furgit

ref: ab7501be34032fb9e5c48726a68ae90a917af9eb
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)
}