mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-10 18:06:55 +00:00
10 lines
153 B
Go
10 lines
153 B
Go
|
package wildcard
|
||
|
|
||
|
import (
|
||
|
wildcard "github.com/kyverno/go-wildcard"
|
||
|
)
|
||
|
|
||
|
func Match(pattern, name string) bool {
|
||
|
return wildcard.Match(pattern, name)
|
||
|
}
|