vylth-flow 0.3.2

Official Rust SDK for Vylth Flow — self-custody crypto payment processing
Documentation
//! Official Rust SDK for Vylth Flow — self-custody crypto payment processing.
//!
//! ```rust,no_run
//! use vylth_flow::Flow;
//!
//! #[tokio::main]
//! async fn main() {
//!     let client = Flow::new("vf_live_...");
//!     let invoice = client.invoices().create(vylth_flow::CreateInvoiceParams {
//!         amount: 100.0,
//!         currency: "USDT".into(),
//!         network: "tron".into(),
//!         ..Default::default()
//!     }).await.unwrap();
//!     println!("Invoice: {}", invoice.id);
//! }
//! ```

mod client;
mod error;
mod http;
mod types;
mod resources;

pub use client::{Flow, FlowBuilder};
pub use error::{FlowError, FlowResult};
pub use types::*;
pub use resources::webhooks::WebhookVerifier;