advent_of_code_2023_in_rust/crates/cli/src/lib.rs
2024-08-30 02:18:02 +02:00

8 lines
180 B
Rust

pub mod benchmarking;
pub mod cli;
pub mod constants;
pub mod solutions;
pub mod solving_given;
pub type AppError = anyhow::Error;
pub type AppResult<T = ()> = anyhow::Result<T>;