//! Transport adapters used by the client.
//!
//! - [`contract`] — the [`WorkflowTransport`] seam every adapter implements.
//! - [`grpc`] — unary workflow-management RPCs over the AW-owned tonic
//! service; event subscriptions delegate to the WebSocket adapter.
//! - [`ws`] — event streaming over the server's `/events/stream` WebSocket
//! endpoint, speaking the cross-SDK subscription protocol (JSON
//! `SubscriptionRequest` first frame, `StreamedEvent` frames,
//! `{"error": <WireError>}` terminal frames, `resume_from_seq` cursor).
//! - [`embedded`] — an in-process [`aion::Engine`] adapter with the same
//! resume/replay-splice semantics as the server.
/// Transport seam shared by every adapter.
/// In-process engine transport.
/// gRPC transport over the AW-owned workflow service.
/// WebSocket event-stream transport.
pub use ;
pub use EmbeddedWorkflowTransport;
pub use GrpcWorkflowTransport;