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 1b896b4..828a8a5 100644
--- a/src/bin/2023/main.rs
+++ b/src/bin/2023/main.rs
@@ -16,6 +16,7 @@ mod day2;
mod day3;
mod day4;
mod day5;
+mod day6;
// NEXT MOD
#[paw::main]
@@ -27,6 +28,7 @@ fn main(opt: Opt) -> Result<()> {
3 => advent_of_code::day!(2023, opt.day, opt.puzzle, day3),
4 => advent_of_code::day!(2023, opt.day, opt.puzzle, day4),
5 => advent_of_code::day!(2023, opt.day, opt.puzzle, day5),
+ 6 => advent_of_code::day!(2023, opt.day, opt.puzzle, day6),
// NEXT PART
_ => panic!("unknown day {}", opt.day),
}