aboutsummaryrefslogtreecommitdiff
path: root/jsonrpc/examples
diff options
context:
space:
mode:
authorhozan23 <hozan23@proton.me>2023-12-02 05:10:33 +0300
committerhozan23 <hozan23@proton.me>2023-12-02 05:10:33 +0300
commit8cdc44b24724acf7dd458e59f5ceed4af04574be (patch)
tree1e0aad5a905508c54f7d9be4d4b800b7e8f7d532 /jsonrpc/examples
parent5111a3d5749625c3d8e26a24a5a32c4da58f18d3 (diff)
Ensure uniform usage of the name `karyon` across all files
Diffstat (limited to 'jsonrpc/examples')
-rw-r--r--jsonrpc/examples/client.rs2
-rw-r--r--jsonrpc/examples/server.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/jsonrpc/examples/client.rs b/jsonrpc/examples/client.rs
index b28760d..2c8cf83 100644
--- a/jsonrpc/examples/client.rs
+++ b/jsonrpc/examples/client.rs
@@ -1,7 +1,7 @@
use serde::{Deserialize, Serialize};
use smol::net::TcpStream;
-use karyons_jsonrpc::{Client, ClientConfig};
+use karyon_jsonrpc::{Client, ClientConfig};
#[derive(Deserialize, Serialize)]
struct Req {
diff --git a/jsonrpc/examples/server.rs b/jsonrpc/examples/server.rs
index b09232f..6953433 100644
--- a/jsonrpc/examples/server.rs
+++ b/jsonrpc/examples/server.rs
@@ -4,7 +4,7 @@ use serde::{Deserialize, Serialize};
use serde_json::Value;
use smol::net::TcpListener;
-use karyons_jsonrpc::{register_service, JsonRPCError, Server, ServerConfig};
+use karyon_jsonrpc::{register_service, JsonRPCError, Server, ServerConfig};
struct Calc {
version: String,