mirror of
https://github.com/rqlite/rqlite.git
synced 2022-10-30 02:37:32 +03:00
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.
17 lines
306 B
Go
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"
|
|
)
|