mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-09 09:26:54 +00:00
6 lines
66 B
Go
6 lines
66 B
Go
|
package source
|
||
|
|
||
|
func IsGit(in string) bool {
|
||
|
return IsHttp(in)
|
||
|
}
|