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 d13e807..25e7c34 100644
--- a/src/bin/2022/main.rs
+++ b/src/bin/2022/main.rs
@@ -31,6 +31,7 @@ mod day17;
mod day18;
mod day19;
mod day20;
+mod day21;
// NEXT MOD
#[paw::main]
@@ -57,6 +58,7 @@ fn main(opt: Opt) -> Result<()> {
18 => advent_of_code::day!(2022, opt.day, opt.puzzle, day18),
19 => advent_of_code::day!(2022, opt.day, opt.puzzle, day19),
20 => advent_of_code::day!(2022, opt.day, opt.puzzle, day20),
+ 21 => advent_of_code::day!(2022, opt.day, opt.puzzle, day21),
// NEXT PART
_ => panic!("unknown day {}", opt.day),
}