experimental-cli/pigeon/version.go

22 lines
350 B
Go
Raw Normal View History

2020-08-24 12:22:34 +00:00
package pigeon
2020-08-02 18:59:32 +00:00
import (
2020-08-02 19:10:32 +00:00
"fmt"
"github.com/spf13/cobra"
2020-08-02 18:59:32 +00:00
)
2020-08-02 19:10:32 +00:00
var versionCmd = &cobra.Command{
Use: "version",
Short: "Show the version of the Pigeon CLI tool.",
Long: ``,
Run: func(cmd *cobra.Command, args []string) {
2020-08-24 12:22:34 +00:00
result := fmt.Sprintf("Pigeon v%s", Version)
2020-08-02 19:10:32 +00:00
fmt.Println(result)
},
}
func init() {
rootCmd.AddCommand(versionCmd)
}