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

use anyhow::Result;

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

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