mirror of
https://github.com/moby/moby.git
synced 2026-01-15 09:51:27 +00:00
10 lines
199 B
Go
10 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
|
|
}
|