cuprated/
rpc.rs

1//! RPC
2//!
3//! Will contain the code to initiate the RPC and a request handler.
4
5mod constants;
6mod handlers;
7mod rpc_handler;
8mod server;
9mod service;
10
11pub use rpc_handler::CupratedRpcHandler;
12pub use server::init_rpc_servers;