Info should be used to describe the example commands that are about to run.
(format string, args ...interface{})
| 27 | |
| 28 | // Info should be used to describe the example commands that are about to run. |
| 29 | func Info(format string, args ...interface{}) { |
| 30 | fmt.Printf("\x1b[34;1m%s\x1b[0m\n", fmt.Sprintf(format, args...)) |
| 31 | } |
| 32 | |
| 33 | // Warning should be used to display a warning |
| 34 | func Warning(format string, args ...interface{}) { |
no test coverage detected
searching dependent graphs…