8 lines
180 B
Rust
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>;
|