aiway-protocol 0.1.0

The aiway protocol lib
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! # 内部交互协议定义
//!
//! 这个lib仅在内部使用,不用作对外的SDK。对外SDK使用单独仓库。
//!

#[allow(unused)]
pub mod common;
#[allow(unused)]
pub mod gateway;
#[cfg(feature = "logg")]
pub mod logg;
#[cfg(feature = "model")]
pub mod model;
mod single;

pub use single::SingleValue as SV;