1
0
mirror of https://github.com/rancher/os.git synced 2025-09-27 13:43:04 +00:00
Files
os/vendor/github.com/docker/docker/utils/stubs.go
2015-12-04 20:19:31 +05:00

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
}