package app import ( "fmt" "github.com/spf13/cobra" ) var VersionCmd = &cobra.Command{ Use: "version", Short: "Print the version number of git-cnb", Long: "Print the version number of git-cnb", Run: func(cmd *cobra.Command, args []string) { fmt.Println("git-cnb CLI Version: v0.0.1") }, }