summaryrefslogtreecommitdiffstats
path: root/src/bin/2023/main.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2023-12-19 02:03:48 -0500
committerJesse Luehrs <doy@tozt.net>2023-12-19 02:03:48 -0500
commit28122a7897219423d70ddd73c7dec0d68cfdec1b (patch)
tree22d9a7ceb89b010f9e4404628e0a871aef1ec5c0 /src/bin/2023/main.rs
parent364d94c2464165fe2b5ead08a91b33d616e72ffe (diff)
downloadadvent-of-code-28122a7897219423d70ddd73c7dec0d68cfdec1b.tar.gz
advent-of-code-28122a7897219423d70ddd73c7dec0d68cfdec1b.zip
day 19
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 b9eb819..1afb78e 100644
--- a/src/bin/2023/main.rs
+++ b/src/bin/2023/main.rs
@@ -29,6 +29,7 @@ mod day15;
mod day16;
mod day17;
mod day18;
+mod day19;
// NEXT MOD
#[paw::main]
@@ -53,6 +54,7 @@ fn main(opt: Opt) -> Result<()> {
16 => advent_of_code::day!(2023, opt.day, opt.puzzle, day16),
17 => advent_of_code::day!(2023, opt.day, opt.puzzle, day17),
18 => advent_of_code::day!(2023, opt.day, opt.puzzle, day18),
+ 19 => advent_of_code::day!(2023, opt.day, opt.puzzle, day19),
// NEXT PART
_ => panic!("unknown day {}", opt.day),
}