9 lines
288 B
Go
9 lines
288 B
Go
|
package influxdb
|
||
|
|
||
|
// BuildInfo represents the information about InfluxDB build.
|
||
|
type BuildInfo struct {
|
||
|
Version string // Version is the current git tag with v prefix stripped
|
||
|
Commit string // Commit is the current git commit SHA
|
||
|
Date string // Date is the build date in RFC3339
|
||
|
}
|