(err error)
| 64 | } |
| 65 | |
| 66 | func isAlreadyExists(err error) bool { |
| 67 | return err != nil && (strings.Contains(err.Error(), "already exists") || strings.Contains(err.Error(), "Duplicate")) |
| 68 | } |
| 69 | |
| 70 | func fatalf(format string, args ...any) { |
| 71 | _, _ = fmt.Fprintf(os.Stderr, format+"\n", args...) |
no test coverage detected
searching dependent graphs…