(v any)
| 54 | } |
| 55 | |
| 56 | func closeq(v any) { |
| 57 | if c, ok := v.(io.Closer); ok { |
| 58 | c.Close() |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | func writeMultipartFormFile(w *multipart.Writer, file *FileUpload, r *Request) error { |
| 63 | content, err := file.GetFileContent() |
no test coverage detected
searching dependent graphs…