blob: 3bdaf5cd11dc53770c35f8968e8663cf41ab599d (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
|
package reftable
import "path"
// pathMatch applies path.Match to full ref names.
func pathMatch(pattern, name string) (bool, error) {
return path.Match(pattern, name)
}
|