corda_rpc/
lib.rs

1mod client;
2pub use client::Client;
3
4mod network_map_snapshot;
5pub use network_map_snapshot::{NetworkMapSnapshot, NodeInfo};
6
7mod types;
8pub use types::Rpc;
9
10#[cfg(test)]
11mod tests;