Skip to main content

agent_client_protocol/schema/
protocol_level.rs

1//! JSON-RPC trait implementations for protocol-level (`$/`-prefixed) messages.
2
3use crate::schema::v1::{CancelRequestNotification, ProtocolLevelNotification};
4
5impl_jsonrpc_notification!(CancelRequestNotification, "$/cancel_request");
6
7impl_jsonrpc_protocol_level_notification_enum!(ProtocolLevelNotification {
8    CancelRequestNotification => "$/cancel_request",
9});