mirror of
https://github.com/netbirdio/netbird.git
synced 2025-03-02 00:41:11 +01:00
17 lines
295 B
Go
17 lines
295 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/netbirdio/netbird/client/system"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var (
|
|
versionCmd = &cobra.Command{
|
|
Use: "version",
|
|
Short: "prints wiretrustee version",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
cmd.Println(system.WiretrusteeVersion())
|
|
},
|
|
}
|
|
)
|