Code reorganization Update

This commit is contained in:
2026-02-22 17:08:11 -05:00
parent 3c669c7e26
commit 5b2b0cbb1f
14 changed files with 781 additions and 305 deletions

View File

@@ -24,7 +24,7 @@ func (rt *Router) UploadSimulationResource(w http.ResponseWriter, r *http.Reques
return
}
err = r.ParseMultipartForm(32 << 20) // 32 MB max memory bounds, rest spills to disk
err = r.ParseMultipartForm(32 << 20)
if err != nil {
http.Error(w, "Error parsing form: "+err.Error(), http.StatusBadRequest)
return