package enum // Severity classifies notification importance for audit and routing. type Severity string const ( SeverityInfo Severity = "info" SeverityWarn Severity = "warn" SeverityCritical Severity = "critical" ) func (s Severity) String() string { return string(s) }