sh-layer4 1.0.0

Continuum Layer 4: Integration
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! # Channel Adapters
//!
//! 渠道适配器实现。

mod cli;
mod http;
mod websocket;

pub use cli::CliChannel;
pub use http::HttpChannel;
pub use websocket::WebSocketChannel;