mirror of https://github.com/databricks/cli.git
13 lines
247 B
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")
|
||
|
},
|
||
|
}
|
||
|
}
|