1
0

Update structure of modules

This commit is contained in:
Stefan Müller
2025-12-06 00:59:48 +01:00
parent 0730ce7f01
commit e8a91164d3
6 changed files with 8 additions and 6 deletions
+4 -5
View File
@@ -1,9 +1,8 @@
mod cafeteria;
mod interval;
mod printing_department;
mod solvers;
mod common;
fn main() {
println!("### Advent of Code 2025 ###\n");
printing_department::PrintingDepartment::new().run();
cafeteria::Cafeteria::new().run();
solvers::printing_department::PrintingDepartment::new().run();
solvers::cafeteria::Cafeteria::new().run();
}