mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
20 lines
425 B
Go
20 lines
425 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/edgelesssys/constellation/internal/constants"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func newVersionCmd() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "version",
|
|
Short: "Display version of this CLI",
|
|
Long: `Display version of this CLI`,
|
|
Args: cobra.NoArgs,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
cmd.Printf("CLI Version: v%s \n", constants.CliVersion)
|
|
},
|
|
}
|
|
return cmd
|
|
}
|