aboutsummaryrefslogtreecommitdiff
path: root/net/src/stream/mod.rs
diff options
context:
space:
mode:
authorhozan23 <hozan23@karyontech.net>2024-05-27 00:49:25 +0200
committerhozan23 <hozan23@karyontech.net>2024-05-27 00:49:25 +0200
commit385d53ec53e750e342cce78edb793958edf5133e (patch)
tree897861166ed9f3d6add3c6ea4bd89da48985ea11 /net/src/stream/mod.rs
parent3acb724ba1aafeaf37e24dada7c769bb4066444a (diff)
net: finish TODOs in websocket implemention & clean up
Diffstat (limited to 'net/src/stream/mod.rs')
-rw-r--r--net/src/stream/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/src/stream/mod.rs b/net/src/stream/mod.rs
index ce48a77..a9aa1ef 100644
--- a/net/src/stream/mod.rs
+++ b/net/src/stream/mod.rs
@@ -3,7 +3,7 @@ mod buffer;
mod websocket;
#[cfg(feature = "ws")]
-pub use websocket::WsStream;
+pub use websocket::{WsStream, WriteWsStream, ReadWsStream};
use std::{
io::ErrorKind,