databricks-cli/cmd/telemetry/telemetry.go

17 lines
260 B
Go

package telemetry
import (
"github.com/spf13/cobra"
)
func New() *cobra.Command {
cmd := &cobra.Command{
Use: "telemetry",
Short: "commands that are used to upload telemetry",
Hidden: true,
}
cmd.AddCommand(newTelemetryUpload())
return cmd
}