databricks-cli/libs/diag/severity.go

11 lines
97 B
Go
Raw Normal View History

package diag
type Severity int
const (
Error Severity = iota
Warning
Info
2024-09-26 15:14:43 +00:00
Recommendation
)