yawcli 0.2.2

CLI tool that uses your IP address to provide local weather data. Does not work outside the USA.
Documentation
1
2
3
4
5
6
fn main() {
    if let Err(e) = yawcli::get_args().and_then(yawcli::run) {
        eprintln!("{}", e);
        std::process::exit(1);
    }
}