cln-grpc 0.2.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
// Huge json!() macros require lots of recursion
#![recursion_limit = "1024"]

#[cfg(feature = "server")]
mod convert;
pub mod pb;

#[cfg(feature = "server")]
mod server;

#[cfg(feature = "server")]
pub use crate::server::Server;

#[cfg(test)]
mod test;