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
215 B
Go
Raw Normal View History

2025-02-03 03:18:38 +00:00
package telemetry
import (
"github.com/spf13/cobra"
)
func New() *cobra.Command {
cmd := &cobra.Command{
Use: "telemetry",
2025-02-03 04:19:26 +00:00
Short: "",
2025-02-03 03:18:38 +00:00
Hidden: true,
}
cmd.AddCommand(newDummyCommand())
return cmd
}