(w io.Writer, style *Style, format string, args ...any)
| 51 | } |
| 52 | |
| 53 | func Fprintf(w io.Writer, style *Style, format string, args ...any) { |
| 54 | fmt.Fprintf(w, style.Format(), fmt.Sprintf(format, args...)) |
| 55 | } |
| 56 | |
| 57 | func Println(style *Style, message string) { |
| 58 | fmt.Printf(style.Format()+"\n", message) |
no test coverage detected