cln-plugin: Make the configuration in init public

It was set to crate level visibility for some reason, not all that
helpful :-)

Suggested-by: Sergi Delgado Segura <@sr-gi>
This commit is contained in:
Christian Decker
2022-11-17 14:19:38 +01:00
parent 8ebde4574d
commit db62d542e1

View File

@@ -63,7 +63,7 @@ pub struct GetManifestCall {}
#[derive(Deserialize, Debug)]
pub(crate) struct InitCall {
pub(crate) options: HashMap<String, Value>,
pub(crate) configuration: Configuration,
pub configuration: Configuration,
}
#[derive(Clone, Deserialize, Debug)]