version.go 459 B

123456789101112131415161718192021
  1. // Copyright 2020-2021 InfluxData, Inc. All rights reserved.
  2. // Use of this source code is governed by MIT
  3. // license that can be found in the LICENSE file.
  4. package influxdb2
  5. import (
  6. "fmt"
  7. "runtime"
  8. "github.com/influxdata/influxdb-client-go/v2/internal/http"
  9. )
  10. const (
  11. // Version defines current version
  12. Version = "2.12.0"
  13. )
  14. func init() {
  15. http.UserAgentBase = fmt.Sprintf("influxdb-client-go/%s (%s; %s)", Version, runtime.GOOS, runtime.GOARCH)
  16. }