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

@@ -72,6 +72,10 @@ func (rt *Router) handleSimulationsPath(w http.ResponseWriter, r *http.Request)
rt.RenameSimulation(w, r, idStr)
return
}
if r.Method == "PUT" && action == "hardware" {
rt.UpdateSimulationHardware(w, r, idStr)
return
}
if r.Method == "POST" && action == "upload" {
rt.UploadSimulationResource(w, r, idStr)
return