(format string, a ...any)
| 54 | } |
| 55 | |
| 56 | func (p *Printer) Printf(format string, a ...any) { |
| 57 | fmt.Fprintf(p.out, format, a...) |
| 58 | } |
| 59 | |
| 60 | // PrintWelcomeMessage prints the welcome message |
| 61 | func (p *Printer) PrintWelcomeMessage(appName string) { |
no outgoing calls
no test coverage detected