mirror of https://github.com/databricks/cli.git
10 lines
81 B
Go
10 lines
81 B
Go
|
package diag
|
||
|
|
||
|
type Severity int
|
||
|
|
||
|
const (
|
||
|
Error Severity = iota
|
||
|
Warning
|
||
|
Info
|
||
|
)
|