1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-08-22 21:55:10 +02:00

basic websocket client

This commit is contained in:
Nikolay Kim
2018-01-27 22:03:03 -08:00
parent 4821d51167
commit 5dd2e7523d
17 changed files with 1332 additions and 74 deletions

5
src/client/mod.rs Normal file
View File

@@ -0,0 +1,5 @@
mod parser;
mod response;
pub use self::response::ClientResponse;
pub use self::parser::{HttpResponseParser, HttpResponseParserError};