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 25e7c34..14aac9b 100644
--- a/src/bin/2022/main.rs
+++ b/src/bin/2022/main.rs
@@ -32,6 +32,7 @@ mod day18;
mod day19;
mod day20;
mod day21;
+mod day23;
// NEXT MOD
#[paw::main]
@@ -59,6 +60,7 @@ fn main(opt: Opt) -> Result<()> {
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),
+ 23 => advent_of_code::day!(2022, opt.day, opt.puzzle, day23),
// NEXT PART
_ => panic!("unknown day {}", opt.day),
}