cuprate/binaries/cuprated/src/rpc.rs

13 lines
192 B
Rust
Raw Normal View History

//! RPC
//!
//! Will contain the code to initiate the RPC and a request handler.
2024-09-02 23:58:38 +00:00
// TODO: remove after impl.
2024-09-02 22:08:52 +00:00
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;