mirror of
https://github.com/docker/docs.git
synced 2026-03-27 14:28:47 +07:00
10 lines
209 B
Go
10 lines
209 B
Go
// +build !experimental
|
|
|
|
package utils
|
|
|
|
// ExperimentalBuild is a stub which always returns false for
|
|
// builds that do not include the "experimental" build tag
|
|
func ExperimentalBuild() bool {
|
|
return false
|
|
}
|