mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-05 15:37:19 +00:00
9 lines
160 B
Go
9 lines
160 B
Go
package match
|
|
|
|
import (
|
|
"github.com/kyverno/kyverno/ext/wildcard"
|
|
)
|
|
|
|
func CheckName(expected, actual string) bool {
|
|
return wildcard.Match(expected, actual)
|
|
}
|