summaryrefslogtreecommitdiffstats
path: root/src/bin/2022/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/2022/main.rs')
-rw-r--r--src/bin/2022/main.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bin/2022/main.rs b/src/bin/2022/main.rs
index 14aac9b..10b06fe 100644
--- a/src/bin/2022/main.rs
+++ b/src/bin/2022/main.rs
@@ -33,6 +33,7 @@ mod day19;
mod day20;
mod day21;
mod day23;
+mod day24;
// NEXT MOD
#[paw::main]
@@ -61,6 +62,7 @@ fn main(opt: Opt) -> Result<()> {
20 => advent_of_code::day!(2022, opt.day, opt.puzzle, day20),
21 => advent_of_code::day!(2022, opt.day, opt.puzzle, day21),
23 => advent_of_code::day!(2022, opt.day, opt.puzzle, day23),
+ 24 => advent_of_code::day!(2022, opt.day, opt.puzzle, day24),
// NEXT PART
_ => panic!("unknown day {}", opt.day),
}