PrintBold prints a bold message
(text string)
| 71 | |
| 72 | // PrintBold prints a bold message |
| 73 | func PrintBold(text string) { |
| 74 | log.Println(Bold(text)) |
| 75 | } |
| 76 | |
| 77 | // PrintNote prints a warning message |
| 78 | func PrintNote(text string) { |
no test coverage detected