aboutsummaryrefslogtreecommitdiff
path: root/jsonrpc/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'jsonrpc/src/lib.rs')
-rw-r--r--jsonrpc/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/jsonrpc/src/lib.rs b/jsonrpc/src/lib.rs
index 7573c4d..626d159 100644
--- a/jsonrpc/src/lib.rs
+++ b/jsonrpc/src/lib.rs
@@ -6,13 +6,13 @@ mod error;
pub mod message;
mod server;
-pub use client::Client;
+pub use client::{Client, ClientBuilder};
pub use error::{Error, Result};
pub use server::{
channel::{ArcChannel, Channel, Subscription, SubscriptionID},
pubsub_service::{PubSubRPCMethod, PubSubRPCService},
service::{RPCMethod, RPCService},
- Server,
+ Server, ServerBuilder
};
pub use karyon_jsonrpc_macro::{rpc_impl, rpc_pubsub_impl};