Update README.md (#2985)

This commit is contained in:
linzi 2021-12-11 16:24:10 +08:00 committed by GitHub
parent 3973c77263
commit e56d18f19d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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.