advent_of_code/src/lib.rs
RingOfStorms (Joshua Bell) 3803c544cf cleanup
2023-12-08 02:59:40 -06:00

11 lines
303 B
Rust

#[cfg(all(feature = "part1", feature = "part2"))]
compile_error!("Part 1 and Part 2 are mutually exclusive and cannot be enabled together");
pub mod utils;
pub mod prelude {
pub use super::utils::{
self,
common::{BoxE, Result, SError, SResult},
config::get_config,
};
}