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 10b06fe..46cc3bb 100644
--- a/src/bin/2022/main.rs
+++ b/src/bin/2022/main.rs
@@ -34,6 +34,7 @@ mod day20;
mod day21;
mod day23;
mod day24;
+mod day25;
// NEXT MOD
#[paw::main]
@@ -63,6 +64,7 @@ fn main(opt: Opt) -> Result<()> {
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),
+ 25 => advent_of_code::day!(2022, opt.day, opt.puzzle, day25),
// NEXT PART
_ => panic!("unknown day {}", opt.day),
}