experimental.go 199 B

123456789
  1. // +build experimental
  2. package utils
  3. // ExperimentalBuild is a stub which always returns true for
  4. // builds that include the "experimental" build tag
  5. func ExperimentalBuild() bool {
  6. return true
  7. }