Skip to main content

codetether_agent/a2a/
mod.rs

1//! A2A Protocol Implementation
2//!
3//! First-class support for the Agent-to-Agent (A2A) protocol, enabling
4//! this agent to work as both a client and server in the A2A ecosystem.
5
6pub mod client;
7pub mod server;
8pub mod types;
9pub mod worker;
10
11// Re-export commonly used types
12#[allow(unused_imports)]
13pub use client::A2AClient;