1#![deny(missing_docs)] 2#![doc = include_str!("../README.md")] 3 4/// Client and transport abstractions for HB46PP provisioning. 5#[cfg(feature = "client")] 6pub mod client; 7mod model; 8 9pub use model::*;