17ce34116a
Signed-off-by: Hu Keping <hukeping@huawei.com>
9 lines
209 B
Go
9 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
|
|
}
|