dcp 0.4.1

A utility tool to copy container filesystems easily
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use anyhow::Result;

extern crate pretty_env_logger;
#[macro_use]
extern crate log;

#[tokio::main]
async fn main() -> Result<()> {
    match dcp::config::get_args() {
        Err(e) => {
            error!("❌ error reading arguments {}", e);
            std::process::exit(1)
        }
        Ok(config) => dcp::run(config).await?,
    }

    Ok(())
}