cuprate/binaries/cuprated/src/rpc.rs
2024-09-02 19:58:38 -04:00

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;