adk-server 1.0.0

HTTP server and A2A protocol for Rust Agent Development Kit (ADK-Rust) agents
Documentation
1
2
3
4
5
6
7
8
9
10
//! Webhook handlers for external event delivery.
//!
//! This module provides webhook endpoint handlers for receiving
//! signed event notifications from external services.

#[cfg(feature = "openai-webhooks")]
pub mod openai;

#[cfg(feature = "openai-webhooks")]
pub use openai::{OpenAIWebhookConfig, OpenAIWebhookHandler, WebhookEvent};