(format string, args ...any)
| 42 | } |
| 43 | |
| 44 | func PrintWarning(format string, args ...any) { |
| 45 | Printf(Warning, "\n[!] %s", fmt.Sprintf(format, args...)) |
| 46 | } |
| 47 | |
| 48 | func PrintPass(format string, args ...any) { |
| 49 | Printf(Pass, "\n[✔] %s", fmt.Sprintf(format, args...)) |
no test coverage detected