1//! JSON-RPC 2.0 Protocol Types 2//! 3//! This module implements the JSON-RPC 2.0 specification types. 4//! Reference: https://www.jsonrpc.org/specification 5 6mod error; 7mod types; 8 9pub use error::*; 10pub use types::*;