localsnd 0.5.21

CLI implementation of localsend
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![allow(dead_code)]

pub mod scanner;
pub mod send;
pub mod server;
pub mod util;

mod error;
mod receive;
mod settings;

pub use {error::*, settings::Settings};

pub type Result<T> = std::result::Result<T, crate::localsend_lib::Error>;