2019: removed unused types from lib.rs

This commit is contained in:
Antoine Martin 2019-12-02 16:04:29 +01:00
parent 7801ac8046
commit c4d9f6c2db

View file

@ -1,9 +1,2 @@
pub mod day01; pub mod day01;
pub mod day02; pub mod day02;
pub type Result<T> = std::result::Result<T, Box<dyn std::error::Error>>;
#[macro_export]
macro_rules! err {
($($string:expr),+) => (Box::<dyn std::error::Error>::from(format!($($string),+)))
}