Warning should be used to display a warning
(format string, args ...interface{})
| 32 | |
| 33 | // Warning should be used to display a warning |
| 34 | func Warning(format string, args ...interface{}) { |
| 35 | fmt.Printf("\x1b[36;1m%s\x1b[0m\n", fmt.Sprintf(format, args...)) |
| 36 | } |