cloister 0.1.1

Zip non-git ignored files in a directory
Documentation
1
2
3
4
5
6
7
8
9
10
11
use anyhow::Error;
use cloister::{init_logger, App};

fn main() -> Result<(), Error> {
    init_logger();

    let app = App::new()?;
    app.run()?;

    Ok(())
}