cuprate/binaries/cuprated/src/rpc.rs

11 lines
163 B
Rust
Raw Normal View History

//! RPC
//!
//! Will contain the code to initiate the RPC and a request handler.
2024-09-02 21:37:18 +00:00
mod bin;
2024-09-01 20:59:33 +00:00
mod handler;
2024-09-02 21:37:18 +00:00
mod json;
mod other;
2024-09-01 20:59:33 +00:00
pub use handler::CupratedRpcHandler;