netbird/client/main.go
shatoboar efbb5acf63
Add client version to the client app and send it to the management service (#218)
* moved wiretrustee version from main to system.info

* added wiretrustee version for all supported platforms

* typo corrected

* refactor: use single WiretrusteeVersion() func to get version of the client

Co-authored-by: braginini <bangvalo@gmail.com>
2022-02-03 18:35:54 +01:00

14 lines
153 B
Go

package main
import (
"os"
"github.com/wiretrustee/wiretrustee/client/cmd"
)
func main() {
if err := cmd.Execute(); err != nil {
os.Exit(1)
}
}