shithub: furgit

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