mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
10 lines
166 B
Go
10 lines
166 B
Go
|
package match
|
||
|
|
||
|
import (
|
||
|
"github.com/kyverno/kyverno/pkg/utils/wildcard"
|
||
|
)
|
||
|
|
||
|
func CheckName(expected, actual string) bool {
|
||
|
return wildcard.Match(expected, actual)
|
||
|
}
|