stateset-a2a 0.7.4

Agent-to-Agent commerce service layer: splits, subscriptions, escrow, webhooks, event streaming
1
2
3
4
5
6
7
8
9
//! Webhook notification service types and logic.
//!
//! Provides HMAC-SHA256 signed webhook delivery and SSRF validation.

pub mod hmac;
pub mod ssrf;

pub use self::hmac::{sign_webhook, verify_webhook};
pub use ssrf::validate_url;