### Issue Description ### Checklist - [x] Dependencies installed - [x] No typos - [x] Searched existing issues and docs Hi :D. Is there a way to bind file from `multipart/form-data` request to a struct field? For example ```go type Data struct { File multipart.FileHeader `form:"file"` } ```