mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
22 lines
952 B
Go
22 lines
952 B
Go
|
package urlutil // import "github.com/docker/docker/pkg/urlutil"
|
||
|
|
||
|
import "github.com/docker/docker/builder/remotecontext/urlutil"
|
||
|
|
||
|
// IsURL returns true if the provided str is an HTTP(S) URL.
|
||
|
//
|
||
|
// Deprecated: use github.com/docker/docker/builder/remotecontext/urlutil.IsURL
|
||
|
// to detect build-context type, or use strings.HasPrefix() to check if the
|
||
|
// string has a https:// or http:// prefix.
|
||
|
func IsURL(str string) bool {
|
||
|
// TODO(thaJeztah) when removing this alias, remove the exception from hack/validate/pkg-imports and hack/make.ps1 (Validate-PkgImports)
|
||
|
return urlutil.IsURL(str)
|
||
|
}
|
||
|
|
||
|
// IsGitURL returns true if the provided str is a git repository URL.
|
||
|
//
|
||
|
// Deprecated: use github.com/docker/docker/builder/remotecontext/urlutil.IsGitURL
|
||
|
func IsGitURL(str string) bool {
|
||
|
// TODO(thaJeztah) when removing this alias, remove the exception from hack/validate/pkg-imports and hack/make.ps1 (Validate-PkgImports)
|
||
|
return urlutil.IsGitURL(str)
|
||
|
}
|