1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-10 09:56:55 +00:00
kyverno/cmd/cli/kubectl-kyverno/utils/common/regex.go

9 lines
142 B
Go
Raw Normal View History

package common
import (
"regexp"
)
2020-11-17 13:07:30 -08:00
// RegexVariables represents regex for '{{}}'
var RegexVariables = regexp.MustCompile(`\{\{[^{}]*\}\}`)