successf prints a green success message to stderr.
(w io.Writer, format string, args ...any)
| 24 | |
| 25 | // successf prints a green success message to stderr. |
| 26 | func successf(w io.Writer, format string, args ...any) { |
| 27 | pretty.Fprintf(w, cliui.DefaultStyles.DateTimeStamp, outputPrefix+format+"\n", args...) |
| 28 | } |
| 29 | |
| 30 | // confirm asks a yes/no question. Returns nil if the user confirms, |
| 31 | // or a cancellation error otherwise. |
no outgoing calls
no test coverage detected