github-bin-downloader 0.1.2

Download binary for your OS from Github.
Documentation
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)+);
    })
);