2015-05-19 18:09:58 -04:00
|
|
|
// +build experimental
|
|
|
|
|
|
|
|
package utils
|
|
|
|
|
2015-07-21 17:20:12 -04:00
|
|
|
// ExperimentalBuild is a stub which always returns true for
|
|
|
|
// builds that include the "experimental" build tag
|
2015-05-19 18:09:58 -04:00
|
|
|
func ExperimentalBuild() bool {
|
|
|
|
return true
|
|
|
|
}
|