lumni 0.0.5

Portable file-utility for object-stores
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::EnvironmentConfig;

pub async fn handle_cp(
    matches: &clap::ArgMatches,
    _config: &mut EnvironmentConfig,
) {
    let source = matches.get_one::<String>("source").unwrap();
    let target = matches.get_one::<String>("target").unwrap();
    println!("Copying from {} to {}", source, target);
}