mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-22 16:13:31 +01:00
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
|
||
|
}
|