mirror of https://github.com/databricks/cli.git
8 lines
243 B
Go
8 lines
243 B
Go
|
package root
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
// ErrAlreadyPrinted is not printed to the user. It's used to signal that the command should exit with an error,
|
||
|
// but the error message was already printed.
|
||
|
var ErrAlreadyPrinted = errors.New("AlreadyPrinted")
|