copyrite 0.3.2

A CLI tool for efficient checksum and copy operations across object stores
Documentation
1
2
3
4
5
6
7
8
9
10
11
use copyrite::cli::Command;
use copyrite::error::Result;

#[tokio::main]
async fn main() -> Result<()> {
    let args = Command::parse_args()?;

    args.execute().await?;

    Ok(())
}