//! Webhooks feature - event delivery on gateway operations.
//!
//! # Structure
//! - `mod.rs` - Feature-facing re-exports for webhook dispatch
//!
//! # Usage
//! Webhook delivery is triggered when gateway operations (fetch, insert, update, delete)
//! complete successfully. See `src/webhooks/` for implementation.
//!
//! # Key Exports
//! - `GatewayWebhookEventDescriptor` - Webhook event type configuration
//! - `gateway_webhook_event_catalog` - Complete webhook event registry
//! - `GatewayWebhookTrigger` - Trigger configuration for webhooks
//! - `dispatch_webhook_test` - Test webhook dispatch functionality
//! - `spawn_gateway_webhook_dispatch` - Background webhook dispatcher
pub use crate;