mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
cbeb5157d6
Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
11 lines
164 B
Go
11 lines
164 B
Go
package source
|
|
|
|
import (
|
|
"regexp"
|
|
)
|
|
|
|
var isHTTPRegex = regexp.MustCompile("^(http|https)://")
|
|
|
|
func IsHttp(in string) bool {
|
|
return isHTTPRegex.MatchString(in)
|
|
}
|