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