//! Curated set of re-exports for the most common `hwhkit` APIs.
//!
//! ```ignore
//! use hwhkit::prelude::*;
//! ```
//!
//! **Philosophy:** the prelude is small on purpose. Only the handful of
//! types you reach for in 90% of services is here — the bootstrap entry
//! points, the application trait, the typed result/error pair, and the
//! HTTP problem-details types. Anything more specialised (integration
//! handles, middleware layers, …) lives at `hwhkit::*` and should be
//! imported explicitly.
pub use crate;
pub use BootstrapConfig;
pub use ;
pub use TenantId;