aiway_protocol/lib.rs
1//! # aiway交互协议
2//!
3#[allow(unused)]
4pub mod common;
5pub mod context;
6#[allow(unused)]
7pub mod gateway;
8#[cfg(feature = "logg")]
9pub mod logg;
10#[cfg(feature = "mcp")]
11pub mod mcp;
12#[cfg(feature = "model")]
13pub mod model;
14
15#[allow(unused)]
16mod single;
17
18#[allow(unused)]
19pub use single::SingleValue as SV;
20
21#[cfg(feature = "mcp")]
22pub use rmcp;