From 5064133f1f59be9539ff6a2ebd830132b2379564 Mon Sep 17 00:00:00 2001 From: hozan23 Date: Sat, 15 Jun 2024 00:02:19 +0200 Subject: jsonrpc: separate the RPC errors from the library implementation errors --- jsonrpc/tests/rpc_impl.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'jsonrpc/tests/rpc_impl.rs') diff --git a/jsonrpc/tests/rpc_impl.rs b/jsonrpc/tests/rpc_impl.rs index 5b14b59..64e3bb1 100644 --- a/jsonrpc/tests/rpc_impl.rs +++ b/jsonrpc/tests/rpc_impl.rs @@ -1,4 +1,4 @@ -use karyon_jsonrpc::{rpc_impl, Error, RPCService}; +use karyon_jsonrpc::{rpc_impl, RPCError, RPCService}; use serde_json::Value; #[test] @@ -7,7 +7,7 @@ fn rpc_impl_service() { #[rpc_impl] impl Foo { - async fn foo(&self, params: Value) -> Result { + async fn foo(&self, params: Value) -> Result { Ok(params) } } -- cgit v1.2.3