oxirs 0.2.4

Command-line interface for OxiRS - import, export, migration, and benchmarking tools
Documentation
1
2
3
4
5
6
7
8
//! SPARQL Update Parse tool

use super::ToolResult;

pub async fn run(_update: String, _file: bool, _print_ast: bool) -> ToolResult {
    println!("SPARQL Update Parse tool not yet implemented");
    Ok(())
}