Files
ghorg/cmd/version.go
Jay Gabriels f2beef6a43 Update modules (#151)
* Update modules
2021-09-23 06:23:11 -07:00

17 lines
288 B
Go

package cmd
import (
"fmt"
"github.com/spf13/cobra"
)
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("v1.7.1")
},
}