(message string)
| 70 | } |
| 71 | |
| 72 | func RenderWarning(message string) string { |
| 73 | if message == "" { |
| 74 | return "" |
| 75 | } |
| 76 | return warningStyleTUI.Render("⚠ Warning: " + message) |
| 77 | } |
| 78 | |
| 79 | func RenderSuccessSimple(message string) string { |
| 80 | if message == "" { |
no outgoing calls
no test coverage detected