(format string, args ...any)
| 31 | ) |
| 32 | |
| 33 | func errExit(format string, args ...any) { |
| 34 | if !strings.HasSuffix(format, "\n") { |
| 35 | format = format + "\n" |
| 36 | } |
| 37 | _, _ = fmt.Fprintf(os.Stderr, format, args...) |
| 38 | os.Exit(1) |
| 39 | } |
| 40 | |
| 41 | var ( |
| 42 | flagOutputFile string |
no outgoing calls
no test coverage detected