cln-grpc 0.6.0

The Core Lightning API as grpc primitives. Provides the bindings used to expose the API over the network.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Huge json!() macros require lots of recursion
#![recursion_limit = "1024"]

pub mod pb;

cfg_if::cfg_if! {
    if #[cfg(feature = "server")] {
        mod convert;
        mod server;
        pub use server::Server;
        pub use server::NotificationStream;
    }
}

#[cfg(test)]
mod test;