1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
pub type GBDResult<T> = std::result::Result<T, Box<dyn std::error::Error>>;

pub mod cli;
pub mod ghapi;
pub mod sysinfo;
pub mod utils;

#[macro_export]
macro_rules! show_error(
    ($($args:tt)+) => ({
        eprintln!($($args)+);
    })
);