mirror of
https://github.com/outbackdingo/ghorg.git
synced 2026-01-27 10:19:03 +00:00
17 lines
289 B
Go
17 lines
289 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.12")
|
|
},
|
|
}
|