diskr-cli 1.0.0

Save your disk space, without fear of deleting the wrong thing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use clap::Parser;
use diskr::cli;

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    let cli = cli::Cli::parse();
    if let Err(e) = cli::run(cli).await {
        eprintln!("error: {e:#}");
        std::process::exit(1);
    }
    Ok(())
}