ringdrop 0.19.1

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
use std::path::Path;

use anyhow::Result;

use crate::daemon::protocol::Op;

pub(crate) async fn run(qr_code: bool, data_dir: &Path) -> Result<()> {
    super::daemon_client(data_dir)?
        .run(Op::NodeId { qr_code })
        .await
}