summaryrefslogtreecommitdiffstats
path: root/src/bin/2022/main.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2022-12-12 00:50:30 -0500
committerJesse Luehrs <doy@tozt.net>2022-12-12 00:50:30 -0500
commit349ec2174dc890a5b7a8d47b5ca5d8c83fea1ec6 (patch)
tree1925abe9976d928cc4d8ef3104ed4a9be3360919 /src/bin/2022/main.rs
parent161c7e6d477d37003a92dfe48d725e89fbebd3bd (diff)
downloadadvent-of-code-349ec2174dc890a5b7a8d47b5ca5d8c83fea1ec6.tar.gz
advent-of-code-349ec2174dc890a5b7a8d47b5ca5d8c83fea1ec6.zip
day 12
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 09a9248..c694d56 100644
--- a/src/bin/2022/main.rs
+++ b/src/bin/2022/main.rs
@@ -22,6 +22,7 @@ mod day6;
mod day7;
mod day8;
mod day9;
+mod day12;
// NEXT MOD
#[paw::main]
@@ -39,6 +40,7 @@ fn main(opt: Opt) -> Result<()> {
9 => advent_of_code::day!(2022, opt.day, opt.puzzle, day9),
10 => advent_of_code::day!(2022, opt.day, opt.puzzle, day10),
11 => advent_of_code::day!(2022, opt.day, opt.puzzle, day11),
+ 12 => advent_of_code::day!(2022, opt.day, opt.puzzle, day12),
// NEXT PART
_ => panic!("unknown day {}", opt.day),
}