(message string)
| 77 | } |
| 78 | |
| 79 | func RenderSuccessSimple(message string) string { |
| 80 | if message == "" { |
| 81 | return "" |
| 82 | } |
| 83 | return successStyle.Render("✓ " + message) |
| 84 | } |
| 85 | |
| 86 | func RenderSuccess(message string) string { |
| 87 | if message == "" { |
no outgoing calls
no test coverage detected