localsnd 0.5.31

CLI implementation of localsend
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use thiserror::Error;

#[derive(Error, Debug)]
pub enum Error {
	#[error(transparent)]
	Io(#[from] std::io::Error),
	#[error(transparent)]
	Reqwest(#[from] reqwest::Error),
	#[error(transparent)]
	Receive(#[from] crate::localsend_lib::receive::ReceiveError),
	#[error(transparent)]
	Send(#[from] crate::localsend_lib::send::SendError),
	#[error(transparent)]
	WalkDir(#[from] walkdir::Error),
}