Skip to main content

faucet_source_xml/
lib.rs

1//! # faucet-source-xml
2//!
3//! A config-driven XML/SOAP API source with automatic XML-to-JSON conversion,
4//! element-path record extraction, and pluggable authentication.
5
6pub mod config;
7pub mod convert;
8pub mod serde_helpers;
9pub mod stream;
10
11pub use faucet_core::{FaucetError, Source};
12
13pub use config::{XmlAuth, XmlPagination, XmlStreamConfig};
14pub use stream::XmlStream;