mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-25 23:49:37 -05:00
20 lines
416 B
Go
20 lines
416 B
Go
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"github.com/edgelesssys/constellation/internal/config"
|
||
|
"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", config.Version)
|
||
|
},
|
||
|
}
|
||
|
return cmd
|
||
|
}
|