//! Push notification delivery.
//!
//! This module hosts the framework's push-delivery surface: the
//! delivery-coordination storage contract, the worker that dispatches
//! outbound HTTP POSTs, and the supporting invariants around SSRF
//! safety and secret redaction.
//!
//! The storage contract — [`A2aPushDeliveryStore`] — is additive to
//! [`crate::storage::A2aPushNotificationStorage`]: configs are still
//! CRUD'd through the push-notification-storage trait; this new trait
//! handles only the per-delivery claim bookkeeping that multi-instance
//! deployments need. Adopters that do not wire a delivery worker do
//! not need to implement the new trait — configs remain stored, just
//! not delivered (the current framework behaviour).
//!
//! See ADR-011 for the full design. The trait docstrings carry the
//! normative contract; backend parity tests in
//! `crates/turul-a2a/src/storage/parity_tests.rs` gate per-backend
//! acceptance.
pub use ;
pub use PushDispatcher;
pub use ;
pub use ;