mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 07:57:07 +00:00
Signed-off-by: Charles-Edouard Brétéché <charled.breteche@gmail.com> Signed-off-by: Charles-Edouard Brétéché <charled.breteche@gmail.com> Co-authored-by: Jim Bugwadia <jim@nirmata.com>
9 lines
154 B
Go
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)
|
|
}
|