cln-plugin: Adjust visibility of some internals

This commit is contained in:
Christian Decker
2022-11-17 17:06:57 +01:00
parent db62d542e1
commit 3d311c96b1
3 changed files with 7 additions and 7 deletions

View File

@@ -58,7 +58,7 @@ pub(crate) enum Notification {
}
#[derive(Deserialize, Debug)]
pub struct GetManifestCall {}
pub(crate) struct GetManifestCall {}
#[derive(Deserialize, Debug)]
pub(crate) struct InitCall {
@@ -93,7 +93,7 @@ pub struct ProxyInfo {
}
#[derive(Debug)]
pub enum JsonRpc<N, R> {
pub(crate) enum JsonRpc<N, R> {
Request(serde_json::Value, R),
Notification(N),
CustomRequest(serde_json::Value, Value),