summaryrefslogtreecommitdiffstats
path: root/src/bin/2023/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/2023/main.rs')
-rw-r--r--src/bin/2023/main.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bin/2023/main.rs b/src/bin/2023/main.rs
index cb9aa54..652bf26 100644
--- a/src/bin/2023/main.rs
+++ b/src/bin/2023/main.rs
@@ -13,6 +13,7 @@ use advent_of_code::prelude::*;
mod day1;
mod day2;
+mod day3;
// NEXT MOD
#[paw::main]
@@ -21,6 +22,7 @@ fn main(opt: Opt) -> Result<()> {
match opt.day {
1 => advent_of_code::day!(2023, opt.day, opt.puzzle, day1),
2 => advent_of_code::day!(2023, opt.day, opt.puzzle, day2),
+ 3 => advent_of_code::day!(2023, opt.day, opt.puzzle, day3),
// NEXT PART
_ => panic!("unknown day {}", opt.day),
}