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 service; 9 10pub use rpc_handler::CupratedRpcHandler;