Skip to content

Commit

Permalink
Merge branch 'gin-gonic:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
jincheng9 authored Dec 12, 2021
2 parents 94584bb + e56d18f commit c1f7be7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ func main() {
router.MaxMultipartMemory = 8 << 20 // 8 MiB
router.POST("/upload", func(c *gin.Context) {
// single file
file, _ := c.FormFile("file")
file, _ := c.FormFile("Filename")
log.Println(file.Filename)

// Upload the file to specific dst.
Expand Down

0 comments on commit c1f7be7

Please sign in to comment.