//! Request handlers for the A2A server endpoints.
//!
//! Covers agent-card discovery ([`handle_agent_card`]), the main JSON-RPC
//! request dispatch ([`handle_agent_request`]), and push-notification config
//! management, all sharing the [`AgentHandlerState`] application state.
pub use handle_agent_card;
pub use handle_agent_request;
pub use AgentHandlerState;