123456789101112131415161718192021 |
- // Copyright 2020-2021 InfluxData, Inc. All rights reserved.
- // Use of this source code is governed by MIT
- // license that can be found in the LICENSE file.
- package influxdb2
- import (
- "fmt"
- "runtime"
- "github.com/influxdata/influxdb-client-go/v2/internal/http"
- )
- const (
- // Version defines current version
- Version = "2.12.0"
- )
- func init() {
- http.UserAgentBase = fmt.Sprintf("influxdb-client-go/%s (%s; %s)", Version, runtime.GOOS, runtime.GOARCH)
- }
|