10 lines
156 B
Rust
10 lines
156 B
Rust
//! ZCLAW Protocols
|
|
//!
|
|
//! Protocol support for MCP (Model Context Protocol) and A2A (Agent-to-Agent).
|
|
|
|
mod mcp;
|
|
mod a2a;
|
|
|
|
pub use mcp::*;
|
|
pub use a2a::*;
|