aboutsummaryrefslogtreecommitdiff
path: root/jsonrpc/README.md
diff options
context:
space:
mode:
authorhozan23 <hozan23@karyontech.net>2024-05-28 00:26:59 +0200
committerhozan23 <hozan23@karyontech.net>2024-05-28 00:26:59 +0200
commit9341e695d0e387927804716b60945912cba686dd (patch)
treecd6389124e3295931d621a7a68837bde74ff9d95 /jsonrpc/README.md
parent8afb4d30750840f66d9f97c2c54a893d3934c45e (diff)
jsonrpc: move `SubscriptionID` to message.rs
Diffstat (limited to 'jsonrpc/README.md')
-rw-r--r--jsonrpc/README.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/jsonrpc/README.md b/jsonrpc/README.md
index 03f5ace..5fc6847 100644
--- a/jsonrpc/README.md
+++ b/jsonrpc/README.md
@@ -22,7 +22,8 @@ use serde_json::Value;
use smol::stream::StreamExt;
use karyon_jsonrpc::{
- Error, Server, Client, rpc_impl, rpc_pubsub_impl, SubscriptionID, ArcChannel
+ Error, Server, Client, rpc_impl, rpc_pubsub_impl, message::SubscriptionID,
+ ArcChannel
};
struct HelloWorld {}