stubs.go 209 B

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