(io *iostreams.IOStreams, s string)
| 56 | } |
| 57 | |
| 58 | func PrintHeader(io *iostreams.IOStreams, s string) { |
| 59 | fmt.Fprintln(io.Out, io.ColorScheme().Bold(s)) |
| 60 | } |
| 61 | |
| 62 | func PrintMessage(io *iostreams.IOStreams, s string) { |
| 63 | fmt.Fprintln(io.Out, io.ColorScheme().Muted(s)) |
no test coverage detected