diff options
author | Guillermo Ramos | 2025-03-14 11:52:09 +0100 |
---|---|---|
committer | Guillermo Ramos | 2025-03-15 20:05:59 +0100 |
commit | c3a2ece1e259ff3d0251fefe16cc7a422ddca0ad (patch) | |
tree | e16fb9aed22a44b55cec170bbd322991a5fbec97 /src/bin | |
parent | 1a552ee15578c028fe05cef08e3e590f10a6f07d (diff) | |
download | hiccup-c3a2ece1e259ff3d0251fefe16cc7a422ddca0ad.tar.gz |
Minucias minucias
Diffstat (limited to 'src/bin')
-rw-r--r-- | src/bin/web.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/bin/web.rs b/src/bin/web.rs index 0384d7f..71b060b 100644 --- a/src/bin/web.rs +++ b/src/bin/web.rs @@ -50,7 +50,6 @@ struct SimSpecs { async fn api_simulate_post(Json(specs): Json<SimSpecs>) -> Json<hiccup::Simulation> { let mut sim = Simulation::new(specs.principal, specs.i1, specs.years); let updates: SimUpdates = specs.updates; - // let updates: SimUpdates = SimUpdates::default(); sim.run(updates); Json(sim) } |