1 2 3 4 5 6 7 8 9 10 11 12 13
//! SPARQL Query Parse tool use super::ToolResult; pub async fn run( _query: String, _file: bool, _print_ast: bool, _print_algebra: bool, ) -> ToolResult { println!("SPARQL Query Parse tool not yet implemented"); Ok(()) }