oxirs 0.2.4

Command-line interface for OxiRS - import, export, migration, and benchmarking tools
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! RDF Copy tool - Copy RDF datasets with format conversion

use super::ToolResult;
use std::path::PathBuf;

/// Run rdfcopy command
pub async fn run(
    source: PathBuf,
    target: PathBuf,
    _source_format: Option<String>,
    _target_format: Option<String>,
) -> ToolResult {
    println!("RDF Copy tool not yet implemented");
    println!("Source: {}", source.display());
    println!("Target: {}", target.display());
    Ok(())
}