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