1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//! Oxigraph store for nostr events
//!
//! See [`manager::RdfEventsStore`]
//!
//! ```
//! use nostralink::prelude::*;
//! use std::path::PathBuf;
//!
//! let store = RdfEventsStore::open(PathBuf::from("rdf_store"))
//! .expect("Failed to open store");
//! ```
pub mod admit_policies;
pub mod bookmarks;
pub mod channel;
pub mod custom_feeds;
pub mod event_state;
pub mod filter;
pub mod following;
pub mod interstore;
pub mod manager;
pub mod mute;
#[cfg(feature = "nostrdb")]
pub mod nostrdb;
#[doc(hidden)]
mod prelude;
mod query;
#[doc(hidden)]
mod queue;
#[doc(hidden)]
pub mod rdfcell;
pub mod relays;
pub mod result_set;
pub mod util;
#[allow(non_camel_case_types)]
pub mod vars;
pub mod wot;