1
0
mirror of https://github.com/labstack/echo.git synced 2025-01-10 00:28:23 +02:00
echo/website/content/recipes/streaming-file-upload.md

29 lines
469 B
Markdown
Raw Normal View History

---
title: Streaming File Upload
menu:
side:
parent: recipes
weight: 8
---
- Streaming multipart/form-data file upload
- Multiple form fields and files
### Server
`server.go`
{{< embed "streaming-file-upload/server.go" >}}
### Client
`index.html`
{{< embed "streaming-file-upload/public/index.html" >}}
### Maintainers
- [vishr](https://github.com/vishr)
### [Source Code](https://github.com/vishr/recipes/blob/master/echo.v1/streaming-file-upload)