package cmd import ( "fmt" "github.com/spf13/cobra" "github.com/gtsteffaniak/filebrowser/version" ) func init() { rootCmd.AddCommand(versionCmd) } var versionCmd = &cobra.Command{ Use: "version", Short: "Print the version number", Run: func(cmd *cobra.Command, args []string) { fmt.Println("File Browser " + version.Version + "/" + version.CommitSHA) }, }