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