mirror of
https://github.com/hinto-janai/cuprate.git
synced 2025-03-24 16:18:49 +00:00
13 lines
203 B
Rust
13 lines
203 B
Rust
//! RPC
|
|
//!
|
|
//! Will contain the code to initiate the RPC and a request handler.
|
|
|
|
mod bin;
|
|
mod constants;
|
|
mod handler;
|
|
mod helper;
|
|
mod json;
|
|
mod other;
|
|
mod request;
|
|
|
|
pub use handler::CupratedRpcHandler;
|