1
0
Fork 0
advent-of-code/2023/src/template/commands/all.rs

6 lines
149 B
Rust

use crate::template::{all_days, run_multi::run_multi};
pub fn handle(is_release: bool) {
run_multi(&all_days().collect(), is_release, false);
}