mirror of
https://github.com/hinto-janai/cuprate.git
synced 2025-02-02 11:16:59 +00:00
12 lines
188 B
Rust
12 lines
188 B
Rust
//! RPC
|
|
//!
|
|
//! Will contain the code to initiate the RPC and a request handler.
|
|
|
|
mod bin;
|
|
mod handler;
|
|
mod helper;
|
|
mod json;
|
|
mod other;
|
|
mod request;
|
|
|
|
pub use handler::CupratedRpcHandler;
|