shithub: furgit

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