agentic 0.0.4

Support library for building Agentic MCP and Agent2Agent based systems
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// region:    --- Modules

mod support;

mod client_transport;
mod comm_trx;
mod error;
mod http;
mod stdio;

pub use client_transport::*;
pub use comm_trx::*;
pub use error::{Error, Result};
pub use http::*;
pub use stdio::*;

// endregion: --- Modules