1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-06 16:06:56 +00:00
kyverno/cmd/cli/kubectl-kyverno/source/http.go

12 lines
164 B
Go
Raw Normal View History

package source
import (
"regexp"
)
var isHTTPRegex = regexp.MustCompile("^(http|https)://")
func IsHttp(in string) bool {
return isHTTPRegex.MatchString(in)
}