PrintMessagef prints the message to stdout.
(format string, a ...any)
| 31 | |
| 32 | // PrintMessagef prints the message to stdout. |
| 33 | func PrintMessagef(format string, a ...any) { |
| 34 | _, _ = fmt.Fprintf(stdout, format+"\n", a...) |
| 35 | } |
| 36 | |
| 37 | type dryRunWriter struct { |
| 38 | name string |
no outgoing calls
no test coverage detected