treer 0.1.1

Simple tree command written in rust.
Documentation
1
2
3
4
5
6
7
8
9
fn main() {
    match treer::cmd::root::run() {
        Ok(()) => {}
        Err(err) => {
            eprintln!("Error: {err}");
            std::process::exit(1);
        }
    }
}