mirror of https://github.com/databricks/cli.git
19 lines
328 B
Go
19 lines
328 B
Go
package selftest
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func New() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "selftest",
|
|
Short: "Non functional CLI commands that are useful for testing",
|
|
Hidden: true,
|
|
}
|
|
|
|
cmd.AddCommand(newSendTelemetry())
|
|
cmd.AddCommand(newPanic())
|
|
cmd.AddCommand(newPatchWhl())
|
|
return cmd
|
|
}
|