1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-10 18:06:55 +00:00
kyverno/pkg/utils/wildcard/match.go

10 lines
153 B
Go
Raw Normal View History

package wildcard
import (
wildcard "github.com/kyverno/go-wildcard"
)
func Match(pattern, name string) bool {
return wildcard.Match(pattern, name)
}