databricks-cli/cmd/selftest/panic.go

13 lines
247 B
Go

package selftest
import "github.com/spf13/cobra"
func newPanic() *cobra.Command {
return &cobra.Command{
Use: "panic",
Run: func(cmd *cobra.Command, args []string) {
panic("the databricks selftest panic command always panics")
},
}
}