github_bin_downloader/
lib.rs

1pub type GBDResult<T> = std::result::Result<T, Box<dyn std::error::Error>>;
2
3pub mod cli;
4pub mod ghapi;
5pub mod sysinfo;
6pub mod utils;
7
8#[macro_export]
9macro_rules! show_error(
10    ($($args:tt)+) => ({
11        eprintln!($($args)+);
12    })
13);