1 2 3 4 5 6 7 8 9 10
pub mod explain; pub mod operation; pub mod optimizer; use crate::resolve_crate_path; use syn::{Path, Result}; pub fn resolve_query_crate_path() -> Result<Path> { resolve_crate_path("graphrecords-query", "query") }