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

pub use crate::srdf_sparql::*;
pub use crate::srdf_sparql_error::*;