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