wsclient 0.1.2

A websocket client using tokio-tungstenite for easy dev
Documentation
1
2
3
4
5
6
pub mod ws_client;
pub use ws_client::*;

pub trait Handler: Send + Sync {
    fn process(&self, data: String);
}