mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-07 08:44:07 +01:00
292ee260ad
Add version command to signal and management servers. The version information will be filled during build time.
10 lines
208 B
Go
10 lines
208 B
Go
package version
|
|
|
|
// will be replaced with the release version when using goreleaser
|
|
var version = "development"
|
|
|
|
// NetbirdVersion returns the Netbird version
|
|
func NetbirdVersion() string {
|
|
return version
|
|
}
|