systemprompt-agent 0.14.6

Agent-to-Agent (A2A) protocol for systemprompt.io AI governance: streaming, JSON-RPC models, task lifecycle, .well-known discovery, and governed agent orchestration.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Webhook delivery and inbound-signature verification for external
//! integrations.
//!
//! Re-exports the [`WebhookService`] facade along with its configuration,
//! retry-policy, and delivery/test result types from the `service` submodule.

mod service;

pub use service::{
    RetryPolicy, WebhookConfig, WebhookDeliveryResult, WebhookService, WebhookTestResult,
};