ws-tool 0.4.1

an easy to use websocket tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[cfg(feature = "blocking")]
mod blocking;

#[cfg(feature = "blocking")]
pub use blocking::*;

#[cfg(feature = "async")]
mod non_blocking;

#[cfg(feature = "async")]
pub use non_blocking::*;