databricks-cli/cmd/telemetry/telemetry.go

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
260 B
Go
Raw Permalink Normal View History

2025-03-05 12:43:46 +00:00
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
}