This commit is contained in:
2026-08-16 21:35:48 +02:00
parent 106f602232
commit 389608ea56
28 changed files with 2491 additions and 115 deletions
@@ -63,3 +63,12 @@ func enhanceStatusFromMeta(raw any) string {
s, _ := m["status"].(string)
return s
}
func enhanceReasonFromMeta(raw any) string {
m, ok := raw.(map[string]any)
if !ok {
return ""
}
s, _ := m["reason"].(string)
return s
}