mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
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)
|
|
}
|