cuprated/rpc/
handlers.rs

1//! RPC handler functions.
2//!
3//! These are the glue (async) functions that connect all the
4//! internal `cuprated` functions and fulfill the request.
5//!
6//! - JSON-RPC handlers are in [`json_rpc`]
7//! - Other JSON endpoint handlers are in [`other_json`]
8//! - Other binary endpoint handlers are in [`bin`]
9//!
10//! - [`helper`] contains helper functions used by many handlers
11//! - [`shared`] contains shared functions used by multiple handlers
12
13pub(super) mod bin;
14pub(super) mod json_rpc;
15pub(super) mod other_json;
16
17mod helper;
18mod shared;