shithub: furgit

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