rod 0.2.4

Distributed graph database that syncs over websockets and multicast
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod memory_storage;
mod multicast;
mod sled_storage;
mod ws_client;
mod ws_conn;
mod ws_server;
pub use memory_storage::MemoryStorage;
pub use multicast::Multicast;
pub use sled_storage::SledStorage;
pub use ws_client::OutgoingWebsocketManager;
pub use ws_conn::WsConn;
pub use ws_server::{WsServer, WsServerConfig};