()
| 58 | } |
| 59 | |
| 60 | func (o *textOutput) stderr() io.Writer { |
| 61 | if o.svc == nil { |
| 62 | return os.Stderr |
| 63 | } |
| 64 | |
| 65 | return o.svc.Stderr() |
| 66 | } |
| 67 | |
| 68 | func (o *textOutput) printStdout(msg string, args ...any) { |
| 69 | fmt.Fprintf(o.stdout(), msg, args...) //nolint:errcheck |
no test coverage detected