Visibility fixes

This commit is contained in:
Luke Parker
2022-08-21 11:29:01 -04:00
parent d596eeee6e
commit 3fffea178f
3 changed files with 10 additions and 6 deletions

View File

@@ -17,9 +17,9 @@ use crate::{
};
#[derive(Deserialize, Debug)]
struct EmptyResponse {}
pub struct EmptyResponse {}
#[derive(Deserialize, Debug)]
struct JsonRpcResponse<T> {
pub struct JsonRpcResponse<T> {
result: T,
}