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 = "model")] 11pub mod model; 12mod single; 13 14pub use single::SingleValue as SV;