pub mod input; pub mod one; pub mod two; pub mod three; use input::AdventError; fn main() -> Result<(), AdventError> { one::one()?; one::two()?; two::one()?; two::two()?; three::one()?; Ok(three::two()?) }