FormatSuccessMessage formats a success message with styling
(message string)
| 155 | |
| 156 | // FormatSuccessMessage formats a success message with styling |
| 157 | func FormatSuccessMessage(message string) string { |
| 158 | return formatSuccessMessageWithTTY(message, isTTY) |
| 159 | } |
| 160 | |
| 161 | // FormatSuccessMessageStderr formats a success message for stderr output. |
| 162 | func FormatSuccessMessageStderr(message string) string { |