1mod cli; 2pub use cli::{Cli, Method}; 3 4mod web; 5pub use web::{get_input, post_puzzle_answer}; 6 7mod puzzles; 8pub use puzzles::solve_puzzle; 9pub use puzzles::year2024;