//! Webhook worker facade.
//!
//! Responsibilities:
//! - Re-export webhook runtime initialization, enqueue, and delivery helpers.
//! - Keep dispatcher orchestration, request delivery, and enqueue policy logic split by concern.
//!
//! Not handled here:
//! - Webhook payload/config types (see `super::types`).
//! - Diagnostics persistence and replay selection (see `super::diagnostics`).
//! - Notification convenience functions (see `super::notifications`).
//!
//! Invariants/assumptions:
//! - Public and crate-visible re-exports preserve the existing worker API surface.
//! - Human-visible destinations continue to flow through the redaction helper only.
//! - Retry scheduling remains owned by the runtime layer, not the hot delivery path.
pub use init_worker_for_parallel;
pub use redact_webhook_destination;
pub use ;
pub use ;
pub use ;