Files
ghorg/cmd/version.go
Jay Gabriels 320652ca2e bump minor version for concurrency
existing users looking to upgrade will need to update their kuve/conf.yaml
2020-03-01 11:43:24 -08:00

21 lines
336 B
Go

package cmd
import (
"fmt"
"github.com/spf13/cobra"
)
func init() {
rootCmd.AddCommand(versionCmd)
}
var versionCmd = &cobra.Command{
Use: "version",
Short: "Print the version number of Ghorg",
Long: `All software has versions. This is Ghorg's`,
Run: func(cmd *cobra.Command, args []string) {
fmt.Println("1.2.0")
},
}