shithub: furgit

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