1 2 3 4 5 6 7 8 9 10 11 12 13
#[cfg(feature = "sparql")] mod endpoint; mod graph; mod manager; #[cfg(feature = "sparql")] pub use endpoint::Endpoint; pub use graph::Graph; pub use manager::ShaclDataManager; pub trait Store<S> { fn store(&self) -> &S; }