srdf/srdf_sparql/
mod.rs

1//! Implementation of [`SRDF`] traits based on SPARQL endpoints
2//!
3//! This crate implements the [`SRDF`] traits using a SPARQL endpoint to obtain the RDF data
4pub mod srdf_sparql_error;
5pub mod srdfsparql;
6
7pub use crate::srdf_sparql_error::*;
8pub use crate::srdfsparql::*;