mirror of
https://github.com/Cuprate/cuprate.git
synced 2025-01-04 09:59:32 +00:00
13 lines
263 B
Rust
13 lines
263 B
Rust
//! RPC
|
|
//!
|
|
//! Will contain the code to initiate the RPC and a request handler.
|
|
|
|
// TODO: remove after impl.
|
|
#![allow(dead_code, unused_variables, clippy::needless_pass_by_value)]
|
|
|
|
mod bin;
|
|
mod handler;
|
|
mod json;
|
|
mod other;
|
|
|
|
pub use handler::CupratedRpcHandler;
|