mirror of https://github.com/databricks/cli.git
17 lines
275 B
Go
17 lines
275 B
Go
|
package telemetry
|
||
|
|
||
|
import (
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
func New() *cobra.Command {
|
||
|
cmd := &cobra.Command{
|
||
|
Use: "telemetry",
|
||
|
Short: "CLI commands to publish telemetry to the Databricks backend.",
|
||
|
Hidden: true,
|
||
|
}
|
||
|
|
||
|
cmd.AddCommand(newDummyCommand())
|
||
|
return cmd
|
||
|
}
|