ringdrop 0.7.0

P2P streamed file transfer with ring-based access control, built on iroh and bao protocols
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub(super) mod blob;
pub(super) mod receive;
pub(super) mod ring;
pub(super) mod tag;

use tokio::sync::mpsc;

use crate::daemon::protocol::Event;

pub(super) async fn send(tx: &mpsc::Sender<Event>, event: Event) {
    let _ = tx.send(event).await;
}