Add multi-file upload that zips files server-side

This commit is contained in:
root
2026-03-23 17:02:26 +01:00
parent a3348e8795
commit 09d919ca27
4 changed files with 268 additions and 16 deletions

View File

@@ -10,6 +10,7 @@ func RegisterRoutes(r *gin.RouterGroup, h *Handler) {
files := r.Group("/files")
files.POST("/upload", h.Upload)
files.POST("/upload-multi", h.UploadMulti)
//files.GET("/download/:id", h.Download)
files.GET("/view/:id", h.View)