ahp-ws 0.1.0

WebSocket transport adapter for the Agent Host Protocol SDK.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! WebSocket transport adapter for the Agent Host Protocol SDK.
//!
//! Provides [`WebSocketTransport`], an implementation of
//! [`ahp::Transport`] on top of `tokio-tungstenite`.

#![forbid(unsafe_code)]
#![warn(missing_docs)]

mod transport;

pub use transport::{WebSocketTransport, WebSocketTransportError};