(msg string, args ...any)
| 70 | } |
| 71 | |
| 72 | func (o *textOutput) printStderr(msg string, args ...any) { |
| 73 | fmt.Fprintf(o.stderr(), msg, args...) //nolint:errcheck |
| 74 | } |
| 75 | |
| 76 | // appServices are the methods of *App that command handles are allowed to call. |
| 77 | // |
no test coverage detected