mirror of
https://github.com/neilotoole/sq.git
synced 2024-12-19 22:21:56 +03:00
14 lines
272 B
Go
14 lines
272 B
Go
// Package buildinfo hosts build info variables populated via ldflags.
|
|
package buildinfo
|
|
|
|
var (
|
|
// Version is the build version.
|
|
Version string
|
|
|
|
// Commit is the commit hash.
|
|
Commit string
|
|
|
|
// Timestamp is the timestamp of when the cli was built.
|
|
Timestamp string
|
|
)
|