mirror of https://github.com/databricks/cli.git
25 lines
529 B
Go
25 lines
529 B
Go
package version
|
|
|
|
import (
|
|
"github.com/databricks/cli/internal/build"
|
|
"github.com/databricks/cli/libs/cmdio"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func New() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "version",
|
|
Args: cobra.NoArgs,
|
|
Short: "Retrieve information about the current version of this CLI",
|
|
Annotations: map[string]string{
|
|
"template": "Databricks CLI v{{.Version}}\n",
|
|
},
|
|
}
|
|
|
|
cmd.RunE = func(cmd *cobra.Command, args []string) error {
|
|
return cmdio.Render(cmd.Context(), build.GetInfo())
|
|
}
|
|
|
|
return cmd
|
|
}
|