sq/cli/buildinfo/buildinfo.go
2020-08-06 11:58:47 -06:00

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
)