mirror of
https://github.com/Cuprate/cuprate.git
synced 2024-12-29 15:09:31 +00:00
12 lines
192 B
Rust
12 lines
192 B
Rust
//! RPC
|
|
//!
|
|
//! Will contain the code to initiate the RPC and a request handler.
|
|
|
|
// TODO: remove after impl.
|
|
|
|
mod bin;
|
|
mod handler;
|
|
mod json;
|
|
mod other;
|
|
|
|
pub use handler::CupratedRpcHandler;
|