databricks-cli/cmd/selftest/selftest.go

17 lines
261 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(newPanic())
return cmd
}