Files
rqlite-distributed-sql/cmd/version.go
Philip O'Toole 4aea326959 Consul and etcd autoclustering (#957)
This PR introduces new node-discovery integration with Consul and etcd. By using one of those systems with rqlite, automatic clustering of rqlite is much easier.
2022-01-19 21:20:47 -05:00

17 lines
306 B
Go

package cmd
// These variables are populated via the Go linker.
var (
// Version of rqlite.
Version = "7"
// Commit this code was built at.
Commit = "unknown"
// Branch the code was built from.
Branch = "unknown"
// Buildtime is the timestamp when the build took place.
Buildtime = "unknown"
)