karyon_jsonrpc/
lib.rs

1
2
3
4
5
6
7
8
9
10
#![doc = include_str!("../README.md")]

pub mod client;
pub mod codec;
pub mod error;
pub mod message;
pub mod net;
pub mod server;

pub use karyon_jsonrpc_macro::{rpc_impl, rpc_method, rpc_pubsub_impl};