Files
lightning/cln-grpc/src/lib.rs
Christian Decker ecda4f717f cln-rpc: Move tests into separate file
These json structs are gigantic, so let's externalize them a bit.
2022-04-02 09:46:01 +10:30

12 lines
172 B
Rust

// Huge json!() macros require lots of recursion
#![recursion_limit = "1024"]
mod convert;
pub mod pb;
mod server;
pub use crate::server::Server;
#[cfg(test)]
mod test;