upload file is working

This commit is contained in:
m
2026-07-11 22:10:17 +02:00
parent b1f7fe6959
commit 8e728c9042
12 changed files with 158 additions and 71 deletions
+10
View File
@@ -0,0 +1,10 @@
package service
import (
"fmt"
"mime/multipart"
)
func UploadFile(f *multipart.FileHeader) {
fmt.Println(f.Filename)
}