proxmox-async: move AsyncChannelWriter to src/io

Signed-off-by: Dietmar Maurer <dietmar@proxmox.com>
This commit is contained in:
Dietmar Maurer
2021-11-20 16:41:53 +01:00
parent 7b7247fa80
commit 5bd54b4d9b
4 changed files with 5 additions and 3 deletions

View File

@ -0,0 +1,4 @@
//! Helper which implements AsyncRead/AsyncWrite
mod async_channel_writer;
pub use async_channel_writer::AsyncChannelWriter;

View File

@ -1,6 +1,7 @@
pub mod blocking;
pub mod broadcast_future;
pub mod compression;
pub mod io;
pub mod runtime;
pub mod stream;
pub mod zip;

View File

@ -1,7 +1,4 @@
//! Wrappers between async readers and streams.
mod async_channel_writer;
pub use async_channel_writer::AsyncChannelWriter;
mod async_reader_stream;
pub use async_reader_stream::AsyncReaderStream;