You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This will let us grow the cli handling without making main unbelievably large. For each leg of the match &args.command, make each a single line command like sim::sim()?.
Move the logic for chain out of main.rs and into chain.rs.
Move the logic of gbm out of main.rs and into gbm.rs.
Move the logic of ou out of main.rs and into ou.rs.
The text was updated successfully, but these errors were encountered:
We should make all of the functionality in main as simple as possible so that it is just
clap
. For example, forsim
we have this snippet:This will let us grow the
cli
handling without making main unbelievably large. For each leg of thematch &args.command
, make each a single line command likesim::sim()?
.chain
out ofmain.rs
and intochain.rs
.gbm
out ofmain.rs
and intogbm.rs
.ou
out ofmain.rs
and intoou.rs
.The text was updated successfully, but these errors were encountered: