harvest 0.2.2

CLI application that does your git stashes finds
Documentation
use clap::Clap;
use harvest::Arg;
use pager::Pager;

fn main() {
    Pager::new().setup();

    let arg = Arg::parse();

    if let Err(e) = harvest::run(arg) {
        eprintln!("{}", e)
    }
}