clightningrpc_plugin/
lib.rs

1//! plugin crater provide the building blocks to build
2//! plugin in core lightning in a modular way.
3//!
4//! ### Ecosystem feature
5//! * **clightningrpc** -
6//!  When enable provide the typed API to the plugin
7//!
8//! author and mantainer: Vincenzo Palazzo https://github.com/vincenzopalazzo
9#![crate_name = "clightningrpc_plugin"]
10pub mod commands;
11pub mod errors;
12pub mod macros;
13pub mod plugin;
14pub mod types;