1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2024-12-14 11:57:48 +00:00
kyverno/ext/wildcard/match.go
Charles-Edouard Brétéché c96199dee1
chore: move utils/wildcard in ext (#8772)
Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
2023-10-29 23:59:53 +00:00

9 lines
154 B
Go

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