diff options
-rw-r--r-- | src/shared/channel.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/shared/channel.rs b/src/shared/channel.rs index ae4b517..f9b090e 100644 --- a/src/shared/channel.rs +++ b/src/shared/channel.rs @@ -47,7 +47,7 @@ pub(crate) enum ChannelSyncMessage { } #[derive(Debug)] -pub struct Channel { +pub(crate) struct Channel { sender: mpsc::Sender<Bytes>, close_sender: mpsc::Sender<()>, } @@ -145,7 +145,9 @@ pub(crate) async fn channels_task( .await }); }, - ChannelId::Unreliable => todo!(), + ChannelId::Unreliable => { + // TODO + }, } } } => { |