(c *color.Color, format string, a ...any)
| 30 | } |
| 31 | |
| 32 | func Printf(c *color.Color, format string, a ...any) { |
| 33 | _, _ = c.Printf(format, a...) |
| 34 | } |
| 35 | |
| 36 | func Fprintf(c *color.Color, w io.Writer, format string, a ...any) { |
| 37 | _, _ = c.Fprintf(w, format, a...) |
no outgoing calls
no test coverage detected