//! # lnbot
//!
//! Official Rust SDK for [LnBot](https://ln.bot) — Bitcoin for AI Agents.
//!
//! Give your AI agents, apps, and services access to Bitcoin over the Lightning
//! Network. Create wallets, send and receive sats, and get real-time payment
//! notifications.
//!
//! # Quick start
//!
//! ```no_run
//! # async fn example() -> Result<(), lnbot::LnBotError> {
//! use lnbot::{LnBot, CreateInvoiceRequest};
//!
//! let client = LnBot::new("uk_...");
//! let w = client.wallet("wal_...");
//! let invoice = w.invoices().create(&CreateInvoiceRequest::new(1000)).await?;
//! println!("{}", invoice.bolt11);
//! # Ok(())
//! # }
//! ```
pub use ;
pub use LnBotError;
pub use *;