mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
17ce34116a
Signed-off-by: Hu Keping <hukeping@huawei.com>
9 lines
199 B
Go
9 lines
199 B
Go
// +build experimental
|
|
|
|
package utils
|
|
|
|
// ExperimentalBuild is a stub which always returns true for
|
|
// builds that include the "experimental" build tag
|
|
func ExperimentalBuild() bool {
|
|
return true
|
|
}
|