Skip to main content

agent_client_protocol/
handler.rs

1//! Handler types for building custom JSON-RPC message handlers.
2//!
3//! This module contains the handler types used by [`Builder`](crate::Builder)
4//! to process incoming messages. Most users won't need to use these types directly,
5//! as the builder methods on `Builder` handle the construction automatically.
6
7pub use crate::jsonrpc::{HandleDispatchFrom, handlers::NullHandler};