rings-node 0.3.0

Rings is a structured peer-to-peer network implementation using WebRTC, Chord algorithm, and full WebAssembly (WASM) support.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! A jsonrpc-server of rings-node.
/// [JSON-RPC]: `<https://www.jsonrpc.org/specification>`
// pub mod method;
//pub mod response;
pub mod server;
/// RpcMeta basic info struct
pub use server::RpcMeta;

/// MetaIoHandler add methods from `super::methods::*` with RpcMeta
pub mod handler;
pub use self::handler::build_handler;
pub use self::handler::HandlerType;
pub mod types;