package cli import ( "github.com/juanfont/headscale/hscontrol/types" "github.com/spf13/cobra" ) func init() { rootCmd.AddCommand(versionCmd) } var versionCmd = &cobra.Command{ Use: "version", Short: "Print the version", Long: "The version of headscale", Run: func(cmd *cobra.Command, args []string) { output := GetOutputFlag(cmd) SuccessOutput(map[string]string{ "version": types.Version, "commit": types.GitCommitHash, }, types.Version, output) }, }